Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Created December 27, 2016 14:35
Show Gist options
  • Select an option

  • Save IgorGavrilenko/48c7418f8fd0eb2269fdfa15eefc5b3e to your computer and use it in GitHub Desktop.

Select an option

Save IgorGavrilenko/48c7418f8fd0eb2269fdfa15eefc5b3e to your computer and use it in GitHub Desktop.
замена подстроки
$('.class').each(function() {
$(this).html(function () {
var res = $(this).html().replace(new RegExp(/ text /ig), 'text');
return res;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment