[jQuery] Re: Internet Explorer and the html method??

2009-06-24 Thread Araceli Domínguez
James thanks a ton for answering, but no changes with your suggestion: Internet Explorer 6 won't show a thing, but Firefox and Safari will show thumbnails and link without any problems. I'm sure this is a stupid tiny issue but I cannot detect what it is. Here is the code I'm using (29 Kb):

[jQuery] Re: Internet Explorer and the html method??

2009-06-24 Thread fredrik
I'm with James. Make a var html that you append to content. But for your problem, IE6 is something that should never been invented !! Try some somtehing like: var html = 'div class=thumb'+nu+'a href=http://mylink.com;img src=images/'+thumb+'.jpg alt='+alt+' name=image'+nu+' style=border:3px

[jQuery] Re: Internet Explorer and the html method??

2009-06-24 Thread Araceli Domínguez
Thanks a ton! Worked!! And totally agreed, IE6 should be out of way for (mental) security reasons :D Thanks again! fredrik escribi: I'm with James. Make a var html that you append to content. But for your problem, IE6 is something that should never been invented !! Try some somtehing

[jQuery] Re: Internet Explorer and the html method??

2009-06-23 Thread James
In here: div class=thumb+nu+ you're trying to set the variable nu, yet, nu is also a part of the variable you're trying to set. You should add ending semi-colons ( ; ) to properly end your code, which will reduce errors. I think you want: var nu = $(this).find('nu').text(); var html =