Skip to content

Instantly share code, notes, and snippets.

@battlejj
Created April 25, 2012 16:41
Show Gist options
  • Select an option

  • Save battlejj/2491196 to your computer and use it in GitHub Desktop.

Select an option

Save battlejj/2491196 to your computer and use it in GitHub Desktop.
jQuery Quickie: IE Quirk w/ :enabled selector
$('input:not(:disabled)');
$('#myInput').is(':disabled');
//all enabled fields - well...almost all (hidden fields are missing) in IE
$('input:enabled');
//all disabled fields
$('input:disabled');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment