To clarify, my delegation plugin handles focus/blur events, so far by providing special event handling for focusin/focusout in browsers that don't already support it (currently only IE). Though it should be easy to rewrite that to bind to focus and blur instead.
I think Klaus Hartl had a different plugin that provided the fix for the submit event. The approach for change should be very similar to focus/blur: Bind the event with caputing instead of bubbling. Jörn On Mon, Dec 22, 2008 at 8:05 PM, John Resig <[email protected]> wrote: > > The new .live() code is in trunk now. The submit/change fixes haven't > landed yet but I was planning on integrating the code from Joern's > delegation plugin (as he resolves the issues there). > > --John > > > > On Mon, Dec 22, 2008 at 12:57 PM, Justin Meyer <[email protected]> wrote: >> >> jQuery developers, >> I've heard that event delegation is being added to many of the big >> JS libraries, including jQuery. It has been a major component of >> JavaScriptMVC. >> >> For JavaScriptMVC's next version, I'm considering using jQuery by >> default and replacing any redundant functionality with jQuery or its >> plugins. >> >> For this to happen, I'd like to help with JavaScriptMVC's code if >> necessary. >> >> How far along is this effort? Have you already figured out the >> special edge cases -> submit/change in IE, change in webkit? >> >> Please let me know if I can help. >> >> > >> > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
