Im trying to submit a form which is kind of long and that is distributed through several "pages" and the "submit" button doesn't send the form.
<div data-role="page">
<form action="save_data.php">
<input type="text">
<a href="#two">next</a>
</div>
<div data-role="page" id="#two">
<input type="text">
<input type="text">
<a href="#three">next</a>
</div>
<div data-role="page" id="#three">
<input type="text">
<input type="submit">
</div>
If I place <form action="save_data.php">
in the same page as the submit it sends the data, otherwise nothing happens.
I can only send forms within the same "page" even though it's all actually the same file?
Thanks