function displaymessageNow()
{
var divArray = document.getElementsByClassName("productitemcell");
for (var i = 0; i<divArray.length; i++)
{
if (divArray[i].class="productitemcell")
alert(divArray[i].innerHTML);
}
}
displaymessageNow();
But this is obviously not the final result we are after.
We need to be able to find the words “1 line custom” in the background (so the user dosnt see this happening) then once these words are found display a link.
You want to find text and change that text to a link, so if the text was spider on a page called “fear of spiders” you would change the word “spider” to a link advertising spider cages?