- JQM: Redirect after Ajax form post
- function submitForm()
- {
- $.ajax(
- {
- type:'POST',
- url:'form.php',
- data:$('#form').serialize(),
- success:function(response)
- {
- /////////////
- $.mobile.changePage('#page1', {
- reloadPage: true
- }, {
- allowSamePageTranstion: true
- }, {
- transition: 'none'
- });
- return false;
- /////////////
- }
- }
- );
- }
- window.location.href="redirect url"