I bind an event to a check box change or click event, which works fine in Firefox, but in IE I need to click elsewhere (causing blur) before the event fires.
I have read and believe that this is due to how IE fires events, but can I get around it anyway ?!
The thing is that this is a smooth search function that does not require a search button
$('#sidebar .itemSearchModule-Form input[type=checkbox]').click(function() {
$('#sidebar .itemSearchModule-Form .saveButton').click();
});
source
share