Wednesday, April 15, 2020

JavaScript Radio button validation

var option=document.getElementsByName('Gender');
if (!(option[0].checked || option[1].checked)) {
    alert
("Please Select Your Gender");
   
return false;
}

source https://stackoverflow.com/questions/10339073/radio-button-validation-in-javascript

No comments:

Post a Comment

Adding new files to remote github repository

  To add new files to a remote GitHub repository, you can use the command line (Git Bash, Terminal) for a local workflow or the GitHub websi...