Skip to content

Instantly share code, notes, and snippets.

@DCarper
Created March 4, 2011 16:04
Show Gist options
  • Select an option

  • Save DCarper/854874 to your computer and use it in GitHub Desktop.

Select an option

Save DCarper/854874 to your computer and use it in GitHub Desktop.
$.fn.highlightDeleteButton = function() {
$(this).live('hover', function() {
this.delete_button = this.delete_button || $(this).find('input[type=submit]');
this.delete_button.toggleClass('serious');
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment