[jQuery] Re: append() not working on dynamically-created nodes in IE

2009-01-12 Thread Joe White
Yep, that was all it took. Thanks! On Jan 11, 3:43 pm, "Karl Rudd" wrote: > Try closing the tag, ie: > > $('#myDiv').append($('')); > > Actually the second $() shouldn't be needed: > > $('#myDiv').append(''); > > Karl Rudd > > On Mon, Jan 12, 2009 at 7:35 AM, Joe White wrote: > > > I'm trouble

[jQuery] Re: append() not working on dynamically-created nodes in IE

2009-01-11 Thread Karl Rudd
Try closing the tag, ie: $('#myDiv').append($('')); Actually the second $() shouldn't be needed: $('#myDiv').append(''); Karl Rudd On Mon, Jan 12, 2009 at 7:35 AM, Joe White wrote: > > I'm troubleshooting a problem where my text wasn't showing up in IE. > I've narrowed the problem down to cr