Chris -
This was a great write-up, thank you!
I just thought the Dev team might be interested in my findings. I
> plan on striping this down and writing conclusive tests and
> documentation over the weekend.
>
Looking forward to it!
--John
--~--~-~--~~~---~--~~
Hey all,
I believe I have found a leak and have the beginnings of a solution to
it.
I'm writing an app that preforms ajax searching that returns pretty
large result sets. I render them via jQuery into a tbody. once a
subsequent search is performed I call tbody.empty() and append the new
result
All IE versions to date if i'm not mistaken (and I fear even v8) have
their own "box-model" implementation. Basically it means that IE for
whatever reason (i guess backwards compatibility, stubbornness or just
plain ignorance uses its own rules to calculate dimensions for
(correct me if I'm wrong
I was wondering if event delegation was going to make it into the core
anytime soon? Rebinding events can get tedious and make for more code
than should be necessary. This would really put jQuery ahead of most
of the other libraries also.
If nothing is planned, I might see if I can gracefully int
Hi
I'm fairly new to jQuery, so I'm trying some things out. I'm currently
writing something to copy a form (including all its values, but not
its event handlers) and place it into an existing iframe. The code I'm
using to do this is:
$("#theframe").contents().find("form").replaceWith($
("#upload
If I had to guess as to what the problem was, I'd say it's the two extra
HTML comments dangling off the end of the document (!?). Thus jQuery is
probably trying to find elements within the comments, which doesn't work.
Unfortunately I don't think it's possible to put this through an XML parser,
eit
Only just managed to get around to creating a test case:
http://www.texotela.co.uk/ajaxerror.php
HTML is sent as text/html, but no DOCTYPE .
John Resig wrote:
> Could you save the output as an HTML file? And then make another file
> that tries to load it? That might be able to point us in the ri