Is it possible to navigate from one page to another by navigating to a jQuery page? I currently have an input window that launches the focus function, for example:
$("#page1").on("focusout", "input", function(){
alert("working");
}
What I would like to do is, after the focus function is triggered, I would like to go to another page using the jquery mobile page navigation page. Normally I would use a button like this:
<a href="#page2">Next</a>
How can I run #page2out of focus function?
source
share