1

I referred this and using touch-punch. But, its throwing me the following error: Object [object Object] has no method 'draggable' for the line :

<script>
$('#slider-range-min').draggable();</script> or <script>$('#widget').draggable();
</script>

How to resolve this issue?

Community
  • 1
  • 1
Smitha
  • 6,110
  • 24
  • 90
  • 161

1 Answers1

3

The most probable error must be the order in which you referred external resources. Make sure the order is jquery, jquery UI, then jQuery Touch Punch.

<script src="js/jquery.1.9.min.js"></script> 
<script src="js/jquery-ui-1.9.2.js"></script>
<script src="js/jquery.ui.touch-punch.js"></script>
Foreever
  • 7,099
  • 8
  • 53
  • 55