Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
173
rated 0 times [  175] [ 2]  / answers: 1 / hits: 70837  / 15 Years ago, thu, april 9, 2009, 12:00:00

How can I add multiple paragraph tag, newly tag on top within div container.



<div id=pcontainer>
<p>recently added on top every time on click event recently added paragarph on top</p>
<p>added before recent</p>
</div>


I am using append but every time I click button it add to bottom I need it to added on top of all paragraph please help.


More From » jquery

 Answers
3

You may use prepend to add the paragraph at the top of the container:



// HTML: <div><p>Lorem ipsum</p></div>
$('div').prepend('<p>Bla bla bla');


Update: Regarding your comment about how to fade in the paragraph - use fadeIn:



$(#pcontainer).prepend($('<p>This paragraph was added by jQuery.</p>').fadeIn('slow'));


A working demo: http://jsbin.com/uneso


[#99725] Friday, April 3, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
malkajillc

Total Points: 652
Total Questions: 107
Total Answers: 98

Location: Finland
Member since Sat, Nov 6, 2021
3 Years ago
malkajillc questions
;