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
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]')