2
votes
Hidden features of Greasemonkey
GM_setValue normally only stores 32-bit integers, strings, and booleans, but you can take advantage of the uneval() method (and a later eval() on retrieval) to store any object.
var …
1
vote
Getting all nodes between the current node and another without current()?
It sounds like using the DOM will be a bit easier, once you use XPath to collect things at that level. Assuming you use no framework, something along the lines of:
var nodes = docu …
0
votes
How do I replace a text box with a drop down populate by web service in fogbugz using greasemonkey script?
An off-the-cuff answer:
Yes. For a first pass, you can implement it by creating the drop-down list on the side, populating it with a GM_xmlHttpRequest, and adding a "onchange" action liste …
