[jQuery] What does not work in old Firefox? is there a list?

2009-10-08 Thread c2h5oh
jQuery 1.3 works fine in FF 2.0+ and partially in 1.0.x and 1.5.x - is there a list of functions that fail with these old browsers? Even an incomplete one would make it easier to go around the problems. I know, users should upgrade their browsers, FF 1.0.x and 1.5.x is ancient history, etc, but:

[jQuery] Re: Firefox (2&3) does not render new content on .append(val) and .html(val)

2008-06-28 Thread c2h5oh
On 26 Cze, 23:31, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > and if the injected html is completely valid it works ? Yes, if it is 100% valid it works just fine. If there is ANY invalid html ANYWHERE in the inserted string, whole string will not be shown/rendered, even if the same string

[jQuery] Re: Firefox (2&3) does not render new content on .append(val) and .html(val)

2008-06-26 Thread c2h5oh
After another couple hours & coffees I found out that if I use $.html(val) to insert invalid html (invalid as in does not validate) no content will be shown, as if it had display:hidden. code like this is enough: var someval = ' one two threefour '; should I try to $(".someclass").html(some

[jQuery] Firefox (2&3) does not render new content on .append(val) and .html(val)

2008-06-22 Thread c2h5oh
I've got some pretty simple code: [..] $(".remove").click(function(){ $.post("index.php",{action:"remove"}, function(data){ $("#right").html(data.newContent); }, "json") return false; }); [..] remove it! [..] Once I click on the link new