When binding to a click event for a checkbox input, the checkbox is already toggled by the time my event handler runs and, more oddly, the toggle is reversed after my event handler runs if I specify event.preventDefault();
<input id="foo" type="checkbox"/>
function clicked(evt) {
alert(document.getElementById('foo').checked);
evt.preventDefault();
}
document.getElementById('foo').addEventListener('click',clicked);
[tested in chrome and firefox]
The alert will respond "true" (or the opposite state of the checkbox pre-click). After you dismiss the alert, the checkbox toggles back.
So, I guess the questions are,
What is the actual default event being prevented? Am I wrong in assuming my event handler should be running before the state is changed? Is there a way to legitimately intercept a checkbox click?
And why in the world is the preventDefault causing the re-toggling the checkbox?
clicked, you get the same result. So it isn't until after the alert that it actually prevents the default. jsfiddle.net/pimvdb/NHwXs/3 – pimvdb Sep 15 '11 at 17:42evt.prevntDefault()toggles a flag and can be called anywhere from within an event handler. It does not have to appear at the end of the call. It controls whether or not the default handler occurs after the newly bound one finishes. – g.d.d.c Sep 15 '11 at 17:45mousedowninstead. – Hemlock Sep 15 '11 at 17:47