Skip to content

Instantly share code, notes, and snippets.

@cato
Created November 2, 2011 06:39
Show Gist options
  • Select an option

  • Save cato/1333044 to your computer and use it in GitHub Desktop.

Select an option

Save cato/1333044 to your computer and use it in GitHub Desktop.
Insert a non-breaking space between the words "New Zealand", so that they are never orphaned
var nz = $('p,h1,h2,h3,h4,h5,h6').filter(":contains('New Zealand')");
nz.each(function(){
$(this).html( $(this).html().replace("New Zealand", "New Zealand"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment