Skip to content Skip to sidebar Skip to footer

Drag And Drop Working In Online But Not Locally?

Kindly see this fiddle: http://jsfiddle.net/hvncN/ This fiddle implements a simple Drag and Drop list and is working fine. And also when I run the same code using a Wamp Server loc

Solution 1:

It is not related with your laptop but is related with your browser support. Use a developer tools (such as firebug) and trace the error.Then, we can help you


Solution 2:

Hey Just checked at my end its working fine at local and online....you just missed the jquery library....

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

or by downloading jquery library at locally and place in js folder as shown below:

<script src="js/jquery.min.js"></script>

all the best...


Solution 3:

Remove / from path you have provided in your code.


Post a Comment for "Drag And Drop Working In Online But Not Locally?"