Non-ajax form not posting

Non-ajax form not posting

I'm trying to add a hidden form that will be triggered to submit to a page on a desktop version of my mobile site, but even stripped down to the basics, the submit doesn't do anything, even just using the button, with the form visible. I've tried everything I can think of, including disabling jQM enhancements, but no luck. Anyone have ideas what I might be doing wrong? Thanks

  1. <form method="post" data-ajax="false" id="fullSiteForm" action="http://localhost/myapp/logon.do?site_preference=normal" target="_blank">
  2. <input type="text" name="userId" id="userId" value="myname" />
  3. <input type="password" name="passwd" id="passwd" value="mypassword" />
  4. <input type="submit" value="submit">
  5. </form>