I want to add a div as a first element using jquery on each click of a button

  <div id='parent-div'>
// want to insert always as a first elment here ... 

<div class='child-div'>some text</div>
<div class='child-div'>some text</div>
<div class='child-div'>some text</div>


</div> 
link|improve this question

43% accept rate
feedback

1 Answer

try prepend function. $("#parent-div").prepend("<div class='child-div'>some text</div>");

link|improve this answer
+1 checked here: jsfiddle.net/QrVY7 – NAVEED Dec 24 '10 at 19:09
feedback

Your Answer

 
or
required, but never shown

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