jQuery UI Draggable not working on ios devices
Touch-based devices like iPhone lacks all common mouse related events we are used to in desktop browsers. It does include: mousemove, mousedown, mouseup, among others. So, the short answer is, you will need to use a solution that have in mind “touch events” counterparts for those “mouse events” above: touchstart, touchmove, touchend or touchcancel. Take … Read more