Skip to content

Instantly share code, notes, and snippets.

@JacobLett
Created September 22, 2015 13:03
Show Gist options
  • Save JacobLett/2a06a58d98b302472398 to your computer and use it in GitHub Desktop.
Save JacobLett/2a06a58d98b302472398 to your computer and use it in GitHub Desktop.
find and replace string jquery
$('#ValidationSummary p').text(function (i, old) {
return old
.replace('your title', 'a title')
.replace('first name', 'christian name')
.replace('your surname', 'your last name');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment