Skip to content

Instantly share code, notes, and snippets.

@hzmangel
hzmangel / gist:6737739
Created September 28, 2013 02:21
Load another multi-page page in jQuery

The default loading only loads first page from the second multi-page page, so make sure to add :rel => :external to the link/button, or add ajaxFormsEnabled : false like this:

$(document).bind("mobileinit", function(){
  $.extend($.mobile , {
  ajaxFormsEnabled : false
  });
});

For the form with submit button, uses data-ajax=false.