Skip to content

Instantly share code, notes, and snippets.

@Lobstrosity
Created November 8, 2010 00:10
Show Gist options
  • Select an option

  • Save Lobstrosity/667221 to your computer and use it in GitHub Desktop.

Select an option

Save Lobstrosity/667221 to your computer and use it in GitHub Desktop.
$.fn.disable = function() {
return this.filter(':input').each(function() {
$(this).attr('disabled', 'disabled');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment