have a look at .append() and .appendTo() ( 
http://docs.jquery.com/Manipulation/append
and http://docs.jquery.com/Manipulation/appendTo )

append will add some content to the end of an element, append to will
append a specified element to another.

if that's all g(r)eek to you, here is a brief description. if you had
an element with the class 'el' and the content 'test test test' and
ran the following snipped of script against it...

$(".el").append("RYAN LIKES TO APPEND");

...your element.el would now say 'test test testRYAN LIKES TO APPEND'.
the additional text would also be appended to any other elements with
that class in the document. use an id for a unique instance.








On Jun 22, 2:34 pm, anjith <anjithkumar.garap...@gmail.com> wrote:
> i need to display 4 messages(in news sectiiion) one after another in a
> div tag.....as in yahooo.....

Reply via email to