unable to open navigation bar on swipeleft

unable to open navigation bar on swipeleft

Hi,

I am trying to open the navigation panel grammatically when swipeleft but nothing is happening. Here is what I am trying:

  1. $(document).on("swipeleft", function(e)
  2. {
  3. if ($.mobile.activePage.find("#nav-panel").is(":visible"))
  4. {
  5. if (e.type === "swipeleft")
  6. {
  7. $("#nav-panel").panel("open");
  8. }
  9. }
  10. });



Regards,