I applied page transition in my html code. It’s working fine under tag but not working under button click. My browser: Firefox 15.0.1
Here is My code: Working fine:
Don't have a login? <a href="#signup" data-transition="slide" >Sign Up</a>
Not Working:
<input id="Submit1" type="submit" value="Login" data-role="button" onClick="location.href='#details';" data-transition="slide" data-inline="true" data-theme="b" />
What’s the problem here?
Change
type="submit"intotype="button"as below: