[jQuery] Re: workaround for IE6 clone(true) bug in jQuery 1.2.2?

2008-05-15 Thread rolfsf
Thanks Karl You know, I tried a simple clone() and nothing happens in IE - no error, but no new row either. My current workaround (that works) is this: var rowcontents = $('#contractDetails tbody tr:last').html(); var row = ("" + rowcontents + "");

[jQuery] Re: workaround for IE6 clone(true) bug in jQuery 1.2.2?

2008-05-15 Thread Karl Swedberg
Hi Rolf, If you're already using livequery, do you even need to use clone(true)? Wouldn't simple clone() do the trick? I thought that the true arg was for cloning the events along with the elements, but that's what livequery does for you. Maybe I'm misunderstanding, though. --Karl _