Skip to content

Instantly share code, notes, and snippets.

@MuratOrs
Created September 9, 2018 12:55
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 MuratOrs/eb19acba729cb17ef7baf04cf4183dd9 to your computer and use it in GitHub Desktop.
Save MuratOrs/eb19acba729cb17ef7baf04cf4183dd9 to your computer and use it in GitHub Desktop.
Обрамить в span последнее слово в заголовке JS
$('.carousel-service-composition h3').each(function() {
var ths = $(this);
ths.html(ths.html().replace(/(\S+)\s*$/,'<span>$1</span>'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment