As the title says. The code that is used is not replacing all instances of the company's name. The website is using foundation and if I paste the script in the different section's it works.
Here is the code:
$(function () {
$("body").children().each(function () {
$(this).html($(this).html().replace("Oblique Creation Inc.", "Obl<span style='color:red;'>i</span>que Creation Inc."));
});
});
Thanks for any help in advance.