Trying to add live click event to links that have :not in the selector
in FF3 produces unresponsive script at line 1441, kills IE7.
jQuery('a:not([href^="#"][href^="javascript"]').live('click', function
() {});
--~--~-~--~~~---~--~~
You received this message becaus
- The selector must be run, before the event handler is bound... this
seems less than ideal, if a large number of DOM elements already exist
- Always binds/listens to the document. My biggest hesitation with
using live for delegation, is that there is no way to control the
listener, it is always
One question:
Why triggerHandler() doesnt trigger live events? Is this behaviour
expected? Is it a bug?
Example here: http://reinaldojunior.net/publico/test-bug-triggerHandler.html
Instructions:
1) Click "Insert Row" to insert rows =D
2) Click inside the input and look at your Firebug console
3