Skip to content

Instantly share code, notes, and snippets.

@AntonLitvin
Created May 7, 2017 09:35
Show Gist options
  • Save AntonLitvin/4e5db5d28b1fc3da5d8f3ff8f47dcd2c to your computer and use it in GitHub Desktop.
Save AntonLitvin/4e5db5d28b1fc3da5d8f3ff8f47dcd2c to your computer and use it in GitHub Desktop.
//span around last word
$('.sentence').each(function(){
var self = $(this);
self.html(self.html().replace(/(\S+)\s*$/, '<span>$1</span>'));
});
//span around first word
$('.sentence').each(function(){
var self = $(this);
self.html(self.html().replace(/^(\S+)/, '<span>$1</span>'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment