Skip to content

Instantly share code, notes, and snippets.

@richerimage
Created January 7, 2015 14:52
Show Gist options
  • Select an option

  • Save richerimage/70ac6b5f4b34035ad8d9 to your computer and use it in GitHub Desktop.

Select an option

Save richerimage/70ac6b5f4b34035ad8d9 to your computer and use it in GitHub Desktop.
Add Span Around First Word
<script>
jQuery(function($){
$.fn.firstWord = function() {
var text = this.text().trim().split(' ');
var first = text.shift();
this.html((text.length > 0 ? '<span class="title-highlight">'+ first + '</span> ' : first) + text.join(' '));
};
$('h1').firstWord();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment