I\'m using jQuery Mobile and Backbone JS for a project. It\'s mostly working, using jQuery Mobile\'s event \'pagebeforeshow\' to trigger the correct Backbone View. In the Ba
For me only .page() worked (without the .page('destroy')).
.page()
.page('destroy')
E.g.:
$('my-control-group-id').page();
Amnon