0

In my phonegap webapp, I have a form with some serious GET action on it. When I click submit, I want to open a new page and extract the form data from the URL with javascript.

Question: can you do that in a phonegap app, when you're not actually in a browser?

temporary_user_name
  • 35,956
  • 47
  • 141
  • 220
  • don't bother answering--> I figured it out. I just don't have enough reputation to answer my own question during the first 8 hours after asking. ill fill in an answer later. – temporary_user_name Mar 19 '12 at 00:50

1 Answers1

0

Yes, you can! It's as simple as I said:

<form action="destinationpage.html" action="GET>
Input your data:<input type="text" name="data /> <br />
<input type="submit" value ="Continue">
</form>

Then see the answer to this question for retrieving your data on the next page!

Community
  • 1
  • 1
temporary_user_name
  • 35,956
  • 47
  • 141
  • 220