-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Firefox version: 7.0.1
Chickenfoot version: 1.0.8
Create and load a web page containing the following HTML and Javascript:
<html>
<head>
<script>
function logClick()
{
var div = document.getElementById("log");
div.innerHTML += "Clicked!<br />";
}
</script>
</head>
<body>
<input type="button" value="Click me!" id="btn" onClick="logClick()" />
<div id="log"></div>
</body>
</html>If you click the button, you should see the "Clicked!" message appear below the button. However, if you run "click('Click me!')" in the Script Editor, you will see TWO "Clicked!" messages appear. So the click function seems to be clicking twice.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels