[jQuery] Re: Element not appended in IE7

2007-12-10 Thread Jean
i have the same problem, but this doesnt work too =/ t On Dec 10, 2007 3:55 PM, Haingotiana A. RAKOTONJANAHARY <[EMAIL PROTECTED]> wrote: > $a = document.createElement('a'); > $(a).appendTo($container); > > -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Re: Element not appended in IE7

2007-12-10 Thread Haingotiana A. RAKOTONJANAHARY
$a = document.createElement('a'); $(a).appendTo($container);

[jQuery] Re: Element not appended in IE7

2007-12-10 Thread bingo
hi Giovanni, have you tried $a = $('a').appendTo($element). I guess this should also work perfectly in both IE and FF On Dec 10, 9:49 am, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > It seems that on certain elements, this syntax is preferred by IE > > $a = $('').appendTo($element); >

[jQuery] Re: Element not appended in IE7

2007-12-10 Thread Giovanni Battista Lenoci
It seems that on certain elements, this syntax is preferred by IE $a = $('').appendTo($element); It's right? There'is an explanation? Thank you