Struggling with this one for a while now. My markup simplified:

<div class=row>
    <div class="somediv"></div>
    <div class="somediv2"></div>
    <div class="elem"></div>
    <div class="elem"></div>
    <div class="somediv3"></div>
    <div class="somediv4"></div>
<div class=row>
....

I need to find a way to select all DIVs on document ready that: 1. has a class: elem 2. their next DIV also has the class name: elem. Then I need to insert a new DIV between them:

<div class=row>
    <div class="somediv2"></div>
    <div class="elem"></div>
    <div class="new"></div>
    <div class="elem"></div>
    <div class="somediv3"></div>
    <div class="somediv4"></div>
<div class=row> // and it goes...


$(document).ready( function () {
   if($('.elem').next().hasClass('.elem')) {
       $('<div class="new"></div>').appendTo().prev('.elem');
   } else {
   });
});
link|improve this question

74% accept rate
feedback

3 Answers

up vote 6 down vote accepted

Try this:

$(document).ready( function () {
   $('.elem + .elem').before($('<div class="new"></div>'));
});

It's using CSS's adjacent sibling selector (+). It finds an element with class .elem with another element with class .elem immediately preceding it, then adds a new div before it.

Fiddle: http://jsfiddle.net/4r2k4/

link|improve this answer
okay - I like your answer better than mine! jsfiddle.net/mrtsherman/kvg8N/1 – mrtsherman Sep 14 '11 at 14:41
Thanks for the fiddles. I forgot to mention (sorry) that the html is generated by javascript. Your codes are working and is simply to understand on a regular page, but I guess because of the generated content this is not working for me. When I'm using click event, I simply add live() to the function, how can do something similar in this case? – elbatron Sep 14 '11 at 15:53
It's working if I attach it to a click event in the above mentioned environment. – elbatron Sep 14 '11 at 16:00
I think you may want to post a new question to get the answer to the .live part. I think the answer is going to end up looking more like your original code and less like Matt's elegant solution. – mrtsherman Sep 14 '11 at 16:04
Thank you guys. Attaching it a live click event is perfect in my case. – elbatron Sep 14 '11 at 16:10
show 1 more comment
feedback

Your code looks pretty good to me. Don't you just need to wrap it in a each so that it fires on each one?

$(document).ready( function () {
   $('.elem').each( function() {
     if($(this).next().hasClass('.elem')) {
         $('<div class="new"></div>').appendTo().prev('.places');
     } else {}
   });
});
link|improve this answer
feedback

The non-jQuery solution:

var divs, str;

divs = document.getElementsByClassName( 'elem' );

[].slice.call( divs ).forEach(function ( div ) {
    str = ' ' + div.nextElementSibling.className + ' ';
    if ( str.indexOf( ' elem ' ) !== -1 ) {
        div.insertAdjacentHTML( 'afterend', ' <div class="new">X</div> ' );
    }
});

Live demo: http://jsfiddle.net/2MfgB/2/

"But Šime, this doesn't work in IE8..." :P


Update:
Alternative solution:

var divs = document.querySelectorAll( '.elem + .elem' );

[].slice.call( divs ).forEach(function ( div ) {
    div.insertAdjacentHTML( 'beforebegin', ' <div class="new">X</div> ' );
});

Live demo: http://jsfiddle.net/2MfgB/3/

link|improve this answer
Thanks for the JS version. – elbatron Sep 14 '11 at 15:55
feedback

Your Answer

 
or
required, but never shown

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