I want to insert a div element after a given element. How do I do it ONCE ?

This is what I have:

var i = 1;

$('<div id="plussign"></div>').one("insertAfter","#div" + i);
link|improve this question

56% accept rate
2  
that's not what one is used for. – zzzzBov Feb 10 at 17:59
Why do you use loop if you want to insert once, though your code is incorrect also. – Sarfraz Feb 10 at 18:00
oh ... alright, I thought I could use it for any function. – user1066899 Feb 10 at 18:01
well this is not my real code. I just wanted to exemplify my case with a "cut-down" version. My variables would give away too much information about my program. – user1066899 Feb 10 at 18:03
feedback

1 Answer

up vote 2 down vote accepted

.one() is the same thing as .click() except it works only once and then detaches itself.

You probably want to do this:

var $target = $('#div' + i);

if (!$target.next().hasClass('plussign')) {
  $('<div />', {'class': 'plussign'}).insertAfter($target);
}

Do note that I changed your id to a class. ids are unique and there cannot be two elements with the same id in the document. class, on the other hand, is not unique and can be used to group many elements together.

link|improve this answer
yes, but the purpose of my code is to only execute it ONCE. That is why I put it in bold letters. The for loop is really, really a dumb thing I inserted to exemplify my code (where there is no for loop). in reality, i is a normal variable. – user1066899 Feb 10 at 18:07
Then what is the loop for? How can that run once if you run it 5 times? An explanation would be good. – Blender Feb 10 at 18:09
well, as I said, in my code there is no for loop. I just wanted a variable to be in the code. And putting it into a for loop was just dumb, sorry. Look at my question, I edited it. – user1066899 Feb 10 at 18:13
1  
Doesn't insertAfter need a parameter? – Rocket Feb 10 at 18:19
1  
Probably ;) Thanks for the catch. – Blender Feb 10 at 18:19
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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