jquery-mobilemobilemobile-websitejquery-mobile-panel

Swipe in the middle to open panel with jQuery Mobile?


I have a small bars button in my nav header that opens the panel when clicked, but how do I make it so that when I swipe to the right from the middle of the app, it opens the left panel? You can see this on many native apps including Facebook. Thanks for any help!


Solution

  • I think this is what you'll want (you may want to refine your selector for your swipe area) -

    $('body').on('swiperight', function () {
        $('#defaultpanel').panel('open', '');
    });
    
    $('body').on('swipeleft', function () {
        $('#defaultpanel').panel('close');
    });
    

    jsFiddle Demo