Displaying 1 result from an estimated 1 matches for "mydrag".
Did you mean:
mydiag
2006 Jan 26
0
cloneNode not draggable in IE
...Element.remove(document.getElementById(''mydiv''));
I then insert the new div with:
document.getElementsByTagName("body").item(0).insertBefore(cloneDiv,document.getElementsByTagName(''body'').item(0).firstChild);
I then make the cloneDiv draggable:
var mydrag = new Draggable(cloneDiv.id, {revert:false});
It drags fine in FF 1.5, won''t drag in IE. No JS errors reported in IE. Also
tried making it draggable with: new
Draggable(document.getElementById(''mynewdiv''), {revert:false}); and again it
works fine in FF, not in IE. An...