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! 回答1: 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 () { $('