So I have this:
<input type="radio" value="<10"> Less than 10 Bubbles
<br />
<input type="radio" value="10"> 10 Bubbles
<br />
<input type="radio" value="10"> More than 10 Bubbles
<br /><br />
<input type="button" onclick="CalculatePrice()" value="Calculate Price">
And basically I want to be able to do some code depending on what radio button is selected, how would I do this?
Thanks!