Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good evening

Add Non-Breaking Space on Title to Prevent Widows

jQuerySnippets

About a 1 minute read

"I am always doing what I cannot do yet, in order to learn how to do it."

Vincent Van Gogh


1
2
3
4
5
6
7
8
9
10
11
12
13
$("h2").each(function() {
     var wordArray = $(this).text().split(" ");
     var finalTitle = "";
     for (i=0;i<=wordArray.length-1;i++) {
        finalTitle += wordArray[i];
        if (i == (wordArray.length-2)) {
            finalTitle += "&nbsp;";
        } else {
            finalTitle += " ";
        }
      }
      $(this).html(finalTitle);
});