vote up 0 vote down star

Basically what I have is this:

<body>
 <div class="class1">
 </div>
 <div class="class2">
 </div>
 <div class="class3">
 </div>
...
</body>

I have no idea why the site creator used classes instead of IDs (they're unique), but it doesn't really matter as I'm writing a GM script and so getElementsByClassName('')[0] effectively does the same thing.

How can I insert an element between the first and second div?

flag

2 Answers

vote up 1 vote down check

Create your own insertAfter function

link|flag
thanks, that's what I was looking for! – Mala Aug 10 at 10:08
no problem :) Take a look at my answer for some tips on writing your own cross-browser DOM traversal functions - stackoverflow.com/questions/920478/… – Russ Cam Aug 10 at 10:14
I ended up using insertBefore instead... seemed easier. Thanks for the link! – Mala Aug 10 at 10:17
vote up -1 vote down

you can use JQuery it very simple

$(".class1").after( document.createTextNode("Hello") );
link|flag
Using jQuery in a greasemonkey script is somewhat over the top, don't you think? ;) – Mala Aug 10 at 10:17
No I did not think so, I just suggest you a option to your problem. Out of curiosity:It definitely does not deserves a -1 score. – openidsujoy Aug 10 at 10:40

Your Answer

Get an OpenID
or

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