BTW, here's how I worked around this problem in my own code:

Object.prototype.doStuff = function(){
  // Hack to workaround jQuery bug
  if ( this==window || this==document ) return;
  ...
}

I had hoped I could extend the prototypes for windows and
HTMLDocuments to have an intercepting doStuff with a value of null, to
more cleanly work around this, but no luck doing that cross-browser
yet.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to