I'm working on an assignment for school where we're working with JavaScript (I'm only allowed to use JavaScript) to validate a form for a payment page. It's my first time working with JavaScript so and I feel a bit lost..i need to link htmp radio buttons and javascript with a Calculate button
thml code
thml code
Code:
<td><input type="text" id="text7" name="fexpirydate" placeholder="22/08/2030" maxlength="30"> <tr/> <tr> <td><input type="radio" name="gender" value="Cash" checked><strong>Cash</strong></td> </tr> <tr> <td><input type="radio" name="gender" value="Ecocash" checked><strong>Ecocash</strong></td> </tr> <tr> <td><input type="radio" name="gender" value="Swipe" checked><strong>Swipe</strong></td> </tr><br><br><br>
Comment