Page Create event for ALL pages?
Hi there,
I want to fire a function when every page is created, from the API documentation I can see that I can do the following:
$( '#aboutPage' ).live( 'pagecreate',function(event){
( ":jqmData(role='sweet-plugin')" ).sweetPlugin();
});
However, this event handler seems to be for a specific page. Is there a similar event I can use for all pages? So that whenever any page is created, I can trigger a custom function?
Thanks.