I am trying to integrate DotNetOpenAuth with a site using jquery mobile. I ran into a problem when jquery mobile seems to cancel 302 redirection to the side providing the side (external site) the server is responding to.
I tried to disable the default jQuery processing of mobile ajax with the following in the mobileinit event:
$.mobile.ajaxEnabled = false;
If I take jquery mobile from the picture, the 302 redirect will be processed correctly, and the OpenID integration with the provider will work fine.
Can someone tell me how to get jquery mobile to properly handle 302 redirects to an external site?
source share