Skip to content

Instantly share code, notes, and snippets.

@radarek
Created October 7, 2010 12:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarek/615048 to your computer and use it in GitHub Desktop.
Save radarek/615048 to your computer and use it in GitHub Desktop.
// How to force IE to invoke "onchange" event after changing radio or checkbox inputs (jQuery example)
$(function () {
if ($.browser.msie) {
$("input:radio, input:checkbox").click(function () {
this.blur();
this.focus();
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment