Skip to content

Instantly share code, notes, and snippets.

@cron64
Created August 23, 2017 23:49
Show Gist options
  • Save cron64/46975e118d218ae802e36dd040548f1f to your computer and use it in GitHub Desktop.
Save cron64/46975e118d218ae802e36dd040548f1f to your computer and use it in GitHub Desktop.
JS: First-last word selection
$(".last-word").html(function(){
var text= $(this).text().trim().split(" ");
var last = text.pop();
return text.join(" ") + (text.length > 0 ? " <span class='red'>" + last + "</span>" : last);
});
$(".first-word").html(function(){
var text= $(this).text().trim().split(" ");
var first = text.shift();
return (text.length > 0 ? "<span class='red'>"+ first + "</span> " : first) + text.join(" ");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment