Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been starting migration from jsTree to Dynatree, because jsTree's documentation is out of date for a long time and you should spend a lot of time in debugging, but I faced with a problem - d'n'd doesn't work correctly in IE. For example, when I try to move one node to inside another, IE puts this node not inside but near (before or after). I tried the sample "Drag'n'drop 2" from official example , it works good in Chrome, but not in IE (any version). Does anyone has experience with this issue ?

share|improve this question

1 Answer

Try to check the DTD of your HTML document. I already faced this issue and I just needed to set the DTD of my HTML document to strict DTD

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.