I have no Javascript experience at all. What I want is to replace a single instance of a block of text in a page’s HTML – how can I do this?
30 minutes of reading around has brought me this:
javascript:document.body.innerHTML = document.body.innerHTML.replace("this","that");
Am I even close?
1 Answer