If have a page id="#notes" what selector should put in the below to load content in a div in page #notes either of these events happen in page before show and show... ?
pagecontainerbeforeshow
pagecontainershow
Code examples:Initialize the pagecontainer with the show callback specified:
1 2 3 | $( ".selector" ).pagecontainer({
show: function( event, ui ) {}
|
Bind an event listener to the pagecontainershow event:
1 | $( ".selector" ).on( "pagecontainershow", function( event, ui ) {} );
|
Code examples:Initialize the pagecontainer with the beforeshow callback specified:
1 2 3 | $( ".selector" ).pagecontainer({
beforeshow: function( event, ui ) {}
|
Bind an event listener to the pagecontainerbeforeshow event:
1 | $( ".selector" ).on( "pagecontainerbeforeshow", function( event, ui ) {} );
|