Skip to content

Instantly share code, notes, and snippets.

@wkw
Created August 16, 2012 12:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wkw/3369688 to your computer and use it in GitHub Desktop.
Save wkw/3369688 to your computer and use it in GitHub Desktop.
jQueryMobile and Backbone.js
// see: http://coenraets.org/blog/2012/03/using-backbone-js-with-jquery-mobile/
// for context.
// this modifies original code (above) to also watch for dialogs being hidden
$('div[data-role="page"],div[data-role="dialog"]').live('pagehide', function (event, ui) {
$(event.currentTarget).remove();
});
@ericbae
Copy link

ericbae commented Nov 28, 2012

awesome. thanks for the tip!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment