Hi, I currently have some .NET controls hosted in object tags and have applied the resize and drag jQuery code to the object element's containing div. When the div is resized or dragged the visibility of the object is set to hidden so that it doesn't interfere and then once the user stops resizing/dragging it is set back to visible.
My problem is that when I drag the div about and then attempt to resize it* I get an 'Object doesn't support this property or method' error, it comes from line 290 in jquery.js in the 'clone: function( events )' function, which is: return jQuery.clean([container.innerHTML])[0]; I have found if I comment out this line and the three preceding it and replace it with the code in the else statement: return this.cloneNode(true); ...then it works fine as far as I can see in IE6 and 7. Are there any potential problems with using this fix? Is there a better way to fix the problem? Thanks for any help you can offer. * This all occurs in IE6 and 7, the .NET controls aren't displayed in FF because it doesn't know how and therefore this problem doesn't occur. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
