Form get() URL management

Form get() URL management

I am trying to find out how to do a standard http form get and NOT include any ajax/jquery navigation.

In my project divided into two parts (1) jquerymobile form <hands over to> (2) non-jquerymobile (same domain) webpage.  The mobile form makes a standard get() request to the non-jquerymobile page.  On form submit however I constantly get the following:


TypeError: Result of expression 'k.data("page")' [undefined] is not an object.   jquery.mobile-1.0a2.min.js:88
If on the non-jquerymobile page I include the jquerymobile library links etc it works fine but I cannot have these links.  Reading through the docs I note $.mobile.changePage() is called all url requests and I think this is the root to the problem. 

  1. Under certain conditions, normal http requests will be used instead of Ajax requests. One case where this is true is when linking to pages on external websites. You can also specify that a normal http request be made through the following link attributes:

    rel=external

    target (with any value, such as "_blank")



This does not seem to work either?