I have a jQuery-ui slider that I'm trying to make work on the iPad using jQuery-ui Touch Punch. According to the documentation, once I've included the library, I should simply need to do the following to make it work on the iPad.
$(".ui-slider-handle").draggable();
However, this isn't working. Can anyone help?
HTML
<div id="scroll"></div>
JS
$(function(){
$("#scroll").slider({
orientation: "vertical",
range: "min",
min: 0,
max: 100,
value: 100
})
})
$(".ui-slider-handle").draggable();