[jquery-dev] Live events and :not

2009-06-17 Thread pbcomm
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

[jquery-dev] Live Events

2009-02-16 Thread mike.helgeson
- 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

[jquery-dev] Live events and triggerHandler()

2009-01-23 Thread JuniorZ
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