I have a functionality in jquery-mobile in which I want to redirect to another page on click of an image after a delay. So far i have reached till here-
setTimeout(function(){
window.location.href = "myPage.html";
},1000);
Its working fine but I want that the page should redirect with slide effect of jQuery mobile.
Doed anybody have any idea?
I got the answer guys..!!
I replaced window.location.href = “myPage.html” with
This is redirecting the page to the target page with slide effect!
Check it out here