adding Form Validation Javacript of jquery???
- by user634599
How can I add inline Validation to make sure a choice of radio input must be selected
<script type="text/javascript">
function choosePage() {
if(document.getElementById('weightloss').form1_option1.checked) {
window.location.replace( "http://google.com/" );
}
…