-1

Is it possible that I can listen to a event where a child element is beind added to a parent dom element .I want to invoke a routine whenever a child elements gets added to dom element dynamically .

ramoh
  • 153
  • 3
  • 15

1 Answers1

0

Try this

$(element).bind("DOMNodeInserted", function(event) {
  ...
});
akuhn
  • 27,477
  • 2
  • 76
  • 91