joaopereirawd / animatedModal.js

animatedModal.js is a jQuery plugin to create a fullscreen modal with CSS3 transitions. You can use the transitions from animate.css or create your own transitions.
MIT License
962 stars 207 forks source link

Is it possible to close popup with android back button ? How ? #31

Open srjahir32 opened 8 years ago

srjahir32 commented 8 years ago

I am trying to close popup with android back button. I've tried this but not working.

$(window).bind('hashchange', function () {
      if (location.hash == null || location.hash == "") {
       var d = $("#demo1").animatedModal();
     d.close();
      }
  });