Skip to content

Instantly share code, notes, and snippets.

@IronGhost63
Created March 6, 2018 11:56
Show Gist options
  • Save IronGhost63/90716eeb23ec7fef678804dc9ff6f663 to your computer and use it in GitHub Desktop.
Save IronGhost63/90716eeb23ec7fef678804dc9ff6f663 to your computer and use it in GitHub Desktop.
How to make article title properly in Blognone
jQuery(".content-title-box").each(function(index){
var title = jQuery(this).find("a").text();
if(title.substr(title.length - 4) !== "แล้ว"){
jQuery(this).find("a").text(title + "แล้ว");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment