I am trying to submit a form within a html5 page that send the data to another page in HTML5. However I do not want to use php, this needs to be able able to be demo'd just using an internet browser. Is this possible to do using Javascript?
An example of the form I am trying to submit is:
<form>
<p>
<label>What is the Name of your Business?</label>
<p>
<input type="text" class="resizedTextbox" name="BusinessName" value="">
<br>
<br>
</p>
<br>
<p>
<label>What type of Business are you starting?</label>
<p>
<input type="text" class="resizedTextbox" name="BusinessType" value="">
<br>
<br>
</p>
<br>
<p>
<label>What is the Main purpose of the Business?</label>
<p>
<input type="text" class="resizedTextbox" name="BusinessPurpose" value="">
<br>
<br>
</p>
<br>
<button type="button" class="buttonClass" onclick="location.href='Step2.html'">
Step 2 >>>
</button>
</form>
Thanks in advance