Skip to content

Instantly share code, notes, and snippets.

@japsu
Created June 3, 2014 06:56
Show Gist options
  • Save japsu/20e1211b1f50a799cc94 to your computer and use it in GitHub Desktop.
Save japsu/20e1211b1f50a799cc94 to your computer and use it in GitHub Desktop.
$('button[type="submit"]').each(function(index, element) {
var input = $('<input type="submit">'),
$elem = $(element);
input.attr('name', $elem.attr('name') || 'submit');
input.attr('value', $elem.text());
input.attr('class', $elem.attr('class'));
$(element).replaceWith(input);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment