tags:

views:

38

answers:

3

I have a page with some inputs of the class 'foobar', and I call a method on each of them.

$("input.foobar").css('color', 'red');

and I am adding more .foobar inputs to the page with javascript.

How can I use jQuery live (or any other method), to watch the page for the creation of new elements that match "input.foobar" and perform my css call on them as soon as they are added to the DOM?

I am confused because live seems to work by adding an event handler, but I do not know how to describe the element creation event.

Thanks.

+1  A: 

the livequery plugin was made to do this specifically: http://docs.jquery.com/Plugins/livequery

Mike Sherov
A: 

See this thread.It will give you some idea.

http://stackoverflow.com/questions/2264246/jquery-click-event-of-a-tag-added-at-run-time-doesnt-get-fired

Dee
The OP already knows how to use live(). This link doesn't really help.
Mike Sherov
A: 

See Mutation event types. I am not sure about the support in various browsers.

DOM Mutation Events

rahul