Prevent Orphans Demo: http://codepen.io/ricardozea/pen/qcDCJ
//Variable that houses elements that need excluded from certain actions
var exclude = $("");
//Preventing Orphans in Post Titles
//Demo: http://codepen.io/ricardozea/pen/qcDCJ
$(".selector").not(exclude).each(function() {
var wordArray = $(this).html().split(' ');
if (wordArray.length > 1) {
wordArray[wordArray.length-2] += '<span> </span>' + wordArray[wordArray.length-1];
var lastWord = wordArray.pop();
lastWord = lastWord.replace(/.*((?:<\/\w+>)*)$/, '$1');
$(this).html(wordArray.join(' ') + lastWord);
}
});