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
Post a Comment