JavaScript Collector
Radio Question Validator script
Validates that every Radio Button question on the form has been answered. No modifications needed!... detail
[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/form/radio-question-validator-script.jpg[/IMG]
Demo: Radio Question Validator script
How to setup
Step 1: Place JavaScript below in your HEAD section
JavaScript
Code:
<SCRIPT LANGUAGE="JavaScript">
// David Blackledge | hxxp ://david.blackledge. com/
<!-- Begin
function checkRadios() {
var el = document.forms[0].elements;
for(var i = 0 ; i < el.length ; ++i) {
if(el[i].type == "radio") {
var radiogroup = el[el[i].name]; // get the whole set of radio buttons.
var itemchecked = false;
for(var j = 0 ; j < radiogroup.length ; ++j) {
if(radiogroup[j].checked) {
itemchecked = true;
break;
}
}
if(!itemchecked) {
alert("Please choose an answer for "+el[i].name+".");
if(el[i].focus)
el[i].focus();
return false;
}
}
}
return true;
}
// End -->
</script>
<!--
This script downloaded from w w w.JavaScriptBank. com
Come to view and download over 2000+ free javascript at w w w.JavaScriptBank. com
-->
Step 2: Place HTML below in your BODY section
HTML
Code:
<FORM onsubmit="return checkRadios(this);">
Blue:
<input type="radio" value="1" name="blue">
<input type="radio" value="2" name="blue">
<input type="radio" value="3" name="blue">
<input type="radio" value="4" name="blue">
<input type="radio" value="5" name="blue">
<BR>
Red:
<input type="radio" value="1" name="red">
<input type="radio" value="2" name="red">
<input type="radio" value="3" name="red">
<input type="radio" value="4" name="red">
<input type="radio" value="5" name="red">
<BR>
<input type="submit" value="check" name="button">
</FORM>
<!--
This script downloaded from w w w.JavaScriptBank. com
Come to view and download over 2000+ free javascript at w w w.JavaScriptBank. com
-->
Quote:
|
Originally Posted by Copyright
The Site may provide, or third parties may provide, links to non-JavaScriptBank.com Internet World Wide Web sites or resources. Because JavaScriptBank.com has no control over such sites and resources, you acknowledge and agree that JavaScriptBank.com is not responsible for the availability of such external sites or resources, and does not endorse and is not responsible or liable for any content, advertising, products, or other materials on or available from such sites or resources. You further acknowledge and agree that JavaScriptBank.com shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such site or resource.
|