equivalent to jquery UI "slidestop" event
I'm trying to use a slider to navigate between pages.
Dragging the slider changes the "page destination" = aria-valuenow . Releasing the slider should fire a changepage event to the selected destination.
Works fine on desktop with "mouseup". On mobile, I'm stuck. Jquery UI "slidestop" doesn't seem to work and the other JQM events don't really fit.
Thanks for any ideas.
Here is the code:
- $('.statusBar .ui-slider a').live('mouseup slidestop', function ()
- {
- goto aria-valuenow-page
- });