I have two radio buttons within a form. A dialog box appears when one of the fields is null. How can I check whether a radio button is selected?
|
|
|
Let's pretend you have HTML like this
For client-side validation, here's some Javascript to check which one is selected:
The above could be made more efficient depending on the exact nature of your markup but that should be enough to get you started. If you're just looking to see if any radio button is selected anywhere on the page, PrototypeJS makes it very easy. Here's a function that will return true if at least one radio button is selected somewhere on the page. Again, this might need to be tweaked depending on your specific HTML.
For server-side validation (remember, you can't depend entirely on Javascript for validation!), it would depend on your language of choice, but you'd but checking the |
|||||||||||
|
|
With jQuery, it'd be something like
Let me break that down into pieces to cover it more clearly. jQuery processes things from left to right.
If you want to avoid this altogether, mark one of the radio buttons as checked ( |
|||||||||||||||||
|
|
A vanilla JavaScript way
|
|||||||||||
|
|
The scripts in this page helped me come up with the script below, which I think is more complete and universal. Basically it will validate any number of radio buttons in a form, meaning that it will make sure that a radio option has been selected for each one of the different radio groups within the form. e.g in the test form below:
The RadioValidator script will make sure that an answer has been given for both 'test1' and 'test2' before it submits. You can have as many radio groups in the form, and it will ignore any other form elements. All missing radio answers will show inside a single alert popup. Here it goes, I hope it helps people. Any bug fixings or helpful modifications welcome :)
|
||||
|
|
|
HTML Code
Javascript Code:
|
||||
|
|
this is a utility function I've created to solve this problem
|
||||
|
|
|
With JQuery, another way to check the current status of the radio buttons is to get the attribute 'checked'. For Example:
In this case you can check the buttons using:
|
|||
|
|
|
just a lil bit modification to Mark Biek ; HTML CODE
and Javascript code to check if radio button is selected
|
|||||||
|
|
http://www.somacon.com/p143.php/
|
|||
|
|
|
Here is the solution which is expanded upon to not go ahead with submission and send an alert if the radio buttons are not checked. Of course this would mean you have to have them unchecked to begin with!
Just remember to set the id ('radio1','radio2' or whatever you called it) in the form for each of the radio buttons or the script will not work. |
||||
|
|
An example:
|
||||
|
|
|
The form
The script
The fiddle: http://jsfiddle.net/PNpUS/ |
|||
|
|
|
Give radio buttons, same name but different IDs.
|
|||
|
|
|
I just want to ensure something gets selected (using jQuery):
|
|||
|
|
|
Here is a javascript method for doing what you need:
Here is the html form part. On clicking the submit button, the javascript function is called. The form will only be submitted to "welcome.php" if that function returns
|
|||||
|

