Skip to content

Instantly share code, notes, and snippets.

@burakerdem
Created August 29, 2011 23:56
Show Gist options
  • Save burakerdem/1179740 to your computer and use it in GitHub Desktop.
Save burakerdem/1179740 to your computer and use it in GitHub Desktop.
JS: Disabling/Enabling Button
$("input[type='submit']").attr("disabled", "disabled");
// $("input[type='submit']").removeAttr("disabled");
// won't work because IE has a bug
// instead use
$("input[type='submit']").prop("disabled", false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment