I need to bind event listener to all dynamicaly created elements by given css selector.
In jQuery, that would be
$(".foo").live("click", function(e) {
// bar
});
Is there any equivalent in Prototype for this?
|
|
I need to bind event listener to all dynamicaly created elements by given css selector. In jQuery, that would be
Is there any equivalent in Prototype for this?
|
||
|
|
|
|
This is usually done with
|
||
|
|