[jquery-dev] Re: using find method on a documentFragment attached node

2009-06-22 Thread John Resig
Unfortunately jQuery selectors are not supported on Document Fragments. Fragments are quite feature-poor and don't even provide basic DOM-querying functionality in some browsers. For example the following will return undefined in Firefox 3: javascript:alert(document.createDocumentFragment().getEl

[jquery-dev] Re: using find method on a documentFragment attached node

2009-06-22 Thread Usman
Hi Amit, This sounds like a manifestation of a probable bug I just posted about here: http://groups.google.com/group/jquery-dev/browse_thread/thread/e39fd327abc66bdd I haven't tested the following with your code, but try this as a possible workaround: var d=$document.find('div[class*=pointer]')