Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created May 25, 2016 08:15
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 Korveld/2e07240eb0a75e7c3c863c1bb43283bf to your computer and use it in GitHub Desktop.
Save Korveld/2e07240eb0a75e7c3c863c1bb43283bf to your computer and use it in GitHub Desktop.
$('p').each(function() {
var word = $(this).html();
var index = word.indexOf(' ');
if(index == -1) {
index = word.length;
}
$(this).html('<span class="first-word">' + word.substring(0, index) + '</span>' + word.substring(index, word.length));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment