Skip to content

Instantly share code, notes, and snippets.

@ellenbo
Last active January 2, 2018 02:31
Show Gist options
  • Save ellenbo/3fb5a771406702ebf8f7feb3262b5896 to your computer and use it in GitHub Desktop.
Save ellenbo/3fb5a771406702ebf8f7feb3262b5896 to your computer and use it in GitHub Desktop.
$('p').each(function(){
var string = $(this).html();
string = string.replace(/ ([^ ]*)$/,' $1');
$(this).html(string);
});
// In Genesis, add this to the Header Scripts:
<script>
jQuery(document).ready(function($) {
$('p').each(function(){
var string = $(this).html();
string = string.replace(/ ([^ ]*)$/,'&nbsp;$1');
$(this).html(string);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment