Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created January 22, 2017 09:44
Show Gist options
  • Save Kcko/b3d4a31788c7aa98192f5c21243bf404 to your computer and use it in GitHub Desktop.
Save Kcko/b3d4a31788c7aa98192f5c21243bf404 to your computer and use it in GitHub Desktop.
jQuery - remove widows
$(function(){
//Loop through each title
$("h3").each(function(){
var content = $(this).text().split(" ");
var widow = " "+content.pop();
$(this).html(content.join(" ")+widow);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment