Skip to content

Instantly share code, notes, and snippets.

@JLeuze
Created May 19, 2012 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JLeuze/2731926 to your computer and use it in GitHub Desktop.
Save JLeuze/2731926 to your computer and use it in GitHub Desktop.
Find and replace WordPress search widget button text with jQuery
jQuery(document).ready(function() {
jQuery('.widget_search').each(function (i) {
jQuery(this).html(jQuery(this).html().replace('value="Search"', 'value="Go"'));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment