[jQuery] unload garbage collection 1.3.2 patch

2009-04-08 Thread docyes
ISSUE: Garbage cleanup is not assigned to an anonymous function. Sometimes unonload is used by other logic that may need jQuery to perform certain tasks. The ability to unbind/bind the garbage collection routine is handy to bump execution order. SUGGESTED SOLUTION: Assign garbage collection

[jQuery] Re: unload garbage collection 1.3.2 patch

2009-04-08 Thread docyes
Typo: Garbage cleanup is not assigned to an anonymous function. Garbage cleanup is assigned to an anonymous function. On Apr 8, 12:28 pm, docyes doc...@gmail.com wrote: ISSUE: Garbage cleanup is not assigned to an anonymous function. Sometimes unonload is used by other logic that may need

[jQuery] Re: bug: jquery and writing an flv player flash object on windows (vista)

2008-09-29 Thread docyes
Hi Robert, Adding Flash to a document is surprisingly hard. I'm glad Flash TML worked for you. Let me know if you or the community would like a port of the library for JQuery? On a secondary note, if you need something for detection checkout:

[jQuery] addEventListener onerror workaround with jQuery.fn.bind

2008-09-04 Thread docyes
In Firefox if an error is thrown in an event handler attached using addEventListener it will not make it to the window.onerror handler, see: https://bugzilla.mozilla.org/show_bug.cgi?id=312448 The solution to this problem is to override jQuery.fn.bind with a handler in a try/catch block. Has