jQuery Find and Replace Characters Loop
Share
jQuery code snippet to Find and Replace Characters using a loop of every html element in a web page. Change the values in the replace function to suit your needs.
jQuery('html').each(function(i){ jQuery(this).text(jQuery(this).text().replace('replacetext','withthistext'))})