[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-04 Thread Feng
core module failure is a bug in WebKit, and it is fixed in ToT, I tested the Safari official release 3.1.2, it fails with the same result, but passes on nightly build r36012. The second one is a bug in V8 (or Chrome). It returns reversed enumeration order of keys if the object is a literal. Here

[jQuery] How to get a ref to the event handler registered via the bind() function?

2007-07-21 Thread Alan Feng
It seems that if an event handler is bound to an element through the bind() call, it won't be available when using the element.onXXX attributes. So if I do: $('#myEle').bind('click', function(){ // do something }); the myEle.onclick is still undefined. I also tried the $('#myEle').attr('click') a