This is for personal use only, so I don't need it to work on a wide variety of browsers, only Chrome.
Basically, I have two radio buttons, "yes" and "no" and a submit button. Now what do I add and where to make the "submit" button open a new tab?
This is what I have: (by the way, all the links go to pages in the same folder, it's a local document)
<form name="input" action="#" method="get" onsubmit="return onFormSubmit(this)">
<label><input type="radio" name="destination" onclick="onRadioClick(this)" value="yes.html" />YES!</label>
<label><input type="radio" name="destination" onclick="onRadioClick(this)" value="no.html"/>No</label>
<input type="submit" value="Submit">
Basically, I have two radio buttons, "yes" and "no" and a submit button. Now what do I add and where to make the "submit" button open a new tab?
This is what I have: (by the way, all the links go to pages in the same folder, it's a local document)
<form name="input" action="#" method="get" onsubmit="return onFormSubmit(this)">
<label><input type="radio" name="destination" onclick="onRadioClick(this)" value="yes.html" />YES!</label>
<label><input type="radio" name="destination" onclick="onRadioClick(this)" value="no.html"/>No</label>
<input type="submit" value="Submit">