/ Gists / jQuery - remove widows
On gists

jQuery - remove widows

jQuery Helpers-Filters-Plugins
jQuery - remove widows

jquery-widow.js Raw #

$(function(){
	//Loop through each title
	$("h3").each(function(){
		var content = $(this).text().split(" ");
		var widow = " "+content.pop();
		$(this).html(content.join(" ")+widow);
	});
});