Can jquery capture the dynamic dom events and perform actions
- by Zombie15
I just wanted to know if something like this is possible.
Jquery should fire some action on certian custom event.
Like Whenever a new row is added to dom dynamically to table then i have certain action like change the background color to example red.
That should work across the whole site.
Somethings like Event listeners in Doctrine2 or Signals in Django
EDIT:
Basically i want some thing like where i can create custom event
$.AddnewEvent(newRowAdded);
Then i can customise that event with my own functions like
$.newRowAdded(function(){ blah blah });