jquery - Does $.mobile.loadPage provide a callback function? -


if wanted load content jquery mobile page required own jquery script, example slideshow plug-in, how load slideshow html page "and" slideshow jquery file $.mobile.loadpage? there callback function?

thanks

you can use "done" after loadpage. method called once page has been loaded..

 $.mobile.loadpage("page2.html", true).done(function (e, ui, page) {       //page has been loaded }).fail(function () {         alert("sorry, no dice");     }); 

thanks


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -