bookmarklet

Ajax in bookmarklet :action done but answer not given

Hi there fellow SOers, I'm trying to do my own bookmarklet and I already tried to read some response in SO but nothing to answer the weird reaction I got from my script. I'm doing an AJAX call from my bookmarklet, so I do the little trick : var newScript = document.createElement("script"); newScript.type = "text/javascript"; newScript...

Javascript bookmarklet, search for regular expression, replace with html link dynamically

I have an html that has a lot of the following: <TD CLASS="broke"> - WF-1234567 - </TD> <TD CLASS="broke"> - WF-1111111 - </TD> <TD CLASS="broke"> - WF-7654321 - </TD> I want to make a javascript bookmarklet to replace all the 7-digit numbers with a hyperlink. How does one do this? My attempt with many things wrong.... javascript...

Check active element in the HTML document using JavaScript

How can I get the active element(focussed textbox or rich text box) from a JavaScript bookmarklet? I want to change the text of a focussed textbox or rich text box when someone clicked on my bookmarklet. Is it possible? ...

Cannot access javascript injected function

I am injecting the following code directly into my browsers address bar. If I edit it just a bit (whilst not even changing any code) from the HTML tab in Firebug, it will work. This piece of code will change the onsubmit event of all forms on a page to call a function which retrieves the field values of that form and sends it as a GET me...