I created a puzzle game with image-puzzle-js library but the <li>
items do not drag in mobile browsers.
I tried jQuery draggable instead of draggable:true css
$(li).draggable({
snap: '#droppable',
snapMode: 'outer',
revert: "invalid",
helper: "clone"
});
but its not working as expecting
I tried the following with touch punch, but still the issue occurs
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.17/jquery-ui.min.js"></script>
<script src="jquery.ui.touch-punch.min.js"></script>
$('li').draggable();