up vote 2 down vote favorite
share [g+] share [fb]

I'd like my GreaseMonkey script to run a function whenever elements with a specific class are inserted into a page. What's the most idiomatic way of doing that?

If it helps, it's a <select> element that is being inserted.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Can you do something with DOMNodeInserted?

link|improve this answer
Dang, beat me to it. This event is fired whether using DOM methods (appendChild et al) or innerHTML, and is fired in Opera as well, so it won't break portability of your userscript (if you care). Check out quirksmode.org/dom/events/tests/DOMtree.html – Ben Blank Feb 4 '09 at 19:25
Thanks, that worked. However I'm concerned that running my function on every insertion might slow things down. Is there any way I can tell the type of element that was inserted? – Sam Hasler Feb 4 '09 at 19:45
if you specify an argument for the function that is being called on DOMNodeInserted, that argument's 'target' property will be the node that a node is being inserted into. So, you could check the nodeType of that to see if it is the type you are looking for. I'm not sure if you can check the class.. – scottm Feb 4 '09 at 21:40
Looks like DOMNode has a className property you could check on: howtocreate.co.uk/tutorials/javascript/domstructure – scottm Feb 4 '09 at 21:42
feedback

You can use DOMNodeInserted

This event is fired whether using DOM methods (appendChild et al) or innerHTML, and is fired in Opera as well, so it won't break portability of your userscript (if you care). Check out http://www.quirksmode.org/dom/events/tests/DOMtree.html

If you specify an argument for the function that is being called on DOMNodeInserted, that argument's 'target' property will be the node that a node is being inserted into. So, you could check the nodeType of that to see if it is the type you are looking for. DOMNode also has a className property you could check on. http://www.howtocreate.co.uk/tutorials/javascript/domstructure

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.