What I want to do is replace all instances of 'old' in a webpage with 'new' in a JS bookmarklet or a greasemonkey script. How can I do this? I suppose jQuery or other frameworks are okay, as there're hacks to include them in both bookmarklets as well as greasemonkey scripts.
Find all instances of 'old' in a webpage and replace each with 'new', using a javascript bookmarklet
|
feedback
|
|
A function that is clobber-proof. That mean's this won't touch any tags or attributes, only text.
Bookmarklet version:
| |||||
|
feedback
|
|
If you replace the innerHtml then you will destroy any dom events you have on the page. Try traversing the document to replace text:
The split/join is faster than doing "replace" if you do not need pattern matching. If you need pattern matching then use "replace" and a regex:
As a bookmarklet:
| |||
|
feedback
|
|
Hey you could try this, problem is it searches the entire body so even attributes and such get changed.
| |||
|
feedback
|
|
A simple line that works along jQuery:
Without jQuery:
The function returning nothing is very important, so the browser is not redirected anywhere after executing the bookmarklet. | ||||
|
feedback
|
|
Yet another recursive approach:
Minified bookmarklet:
| ||||
|
feedback
|
|
Okay, I'm just consolidating some of the great stuff that people are putting up in one answer. Here is sixthgear's jQuery code, but made portable (I source jQuery from the big G) and minified into a bookmarklet:
NOTE that 'old' can be either a 'string literal', or a 'reg[Ee]x'. Actually, now that I think about it, sixthgear's is the best answer, especially with my enhancements. I can't find anything that the other answers add over it, using jQuery achieves incredible X-browser compatibility. Plus, I'm just fucking lazy. community wiki, Enjoy! | ||||
|
feedback
|
|
I'm trying to slightly modify this so that it prompts for the text to search for, followed by the text to replace with, and when all done processing, show a dialog box letting me know it's done. I plan to use it on a phpmyadmin database edit page that'll have any number of textboxes filled with text (which is what I need it to search and replace in). Also, the text to search for and replace may or may not be multi-line, so I've added the 'm' param in the regex, and also, since I'll be doing searches/replaces that may contain html, they'll often have quotes/double quotes in them. ex: Search for:
and maybe replace with nothing (just to erase all that code), or some other html. So far this is the bookmarklet I've come up with, (javascript, and especially bookmarklets aren't something I mess with often) however, it does nothing as far as finding/replacing, although it does do the prompting correctly.
Anyone have any ideas? | |||
|
feedback
|