Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 20th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Removing the word 'Share' within some generated content
  2. $("#divId").text($("#divId").text().replace("Share", ""));
  3.        
  4. txt = txt.replace(/bshareb/ig, "");
  5.        
  6. //Removes 'Share' string from featured posts excerpts on home page
  7. jQuery('span.excerpt').each(function() {
  8.     var share = jQuery(this);
  9.     share.text(share.text().substr(6) );
  10. });