I m using www.redips.net/ for drag/drop of objects its same as jquery but problem is that if I put everything as Static HTML then it working fine.If I generate dynamically HTML (which is must) then one of js library redips-drag-min fails to apply & drag-drop not working.
I found one solution to add reference to that js dynamically after all HTML has been created like this
var ssioCss = document.createElement("script");
ssioCss.setAttribute("type", "text/javascript");
ssioCss.setAttribute("src", "../redips-drag-min.js");
document.head.appendChild(ssioCss);
one of the css file works this way & its great but why not the JS file can anybody help ?? Thanks