Awesome radio button grouping with jQuery

Saturday, December 19th, 2009 Tags: , , , ,

I was asked to do something rather interesting with some radio button inputs the other day. I haven't come across this particular problem before and google didn't return anything helpful, so I decided to share what I came up with.

Live Demo

First, the scenario

We have a standard form with 4 radio button groups. Each group has 4 radio buttons labeled from "1" to "4". Now, when the user selects "option 1" in "group 1", all the remaining "option 1" items need to be disabled. To see an example in action, you can view the demo here.

The problem

When I first started, I thought that it's simply a matter of giving each "option" (regardless of group) a common class name - then just disabling all other options with the same class name. That works, to a point, but what if the user changes his mind and selects another option ? Now I had to find all previously disabled options, re-enable them and start all over again.

The solution

Essentially what I came up with was a basic nested loop to handle setting and unsetting the relevant "disabled" attributes. To achieve this, first we assign all "option 1" a class of "number1", "option 2" a class of "number2" and so on.

Next, we run a basic for loop, and go through each "number" class (i.e. number1 to number4). For each class, we call a function. Inside this function is another loop - this time iterating over each radio button assigned the current class name. Using this loop, we remove any "disabled" attributes which may have been assigned previously.

We also find out which item in that group is currently selected (if any) - this is so we can run a second loop to disable all those options not currently selected. Confused ? Now might be a good time to go through the code.

The code

$(function(){
		// fire our code when a radio button has been selected
		$("input[type=radio]").change(function(){
			var name = $(this).attr("name"); // get the current button's group name
			$("input[name="+name+"]").removeAttr("selected"); // first we deselect "all" radio buttons within the same group
			$(this).attr("selected","selected"); // make sure our currently "changed" button is selected
			for(i=1;i<=4;i++){ // go through the 4 radio classes
				processRadio(".radio"+i);
			}
		});
		/**
			Loops through each item with same "class" name and disables/enables where appropriate
		**/
		function processRadio(myclass){
			var empty;
			var id = "";
			var buttons = $(myclass); // read all buttons with the specified class name into a jQuery object
			buttons.each(function(){ // loop through each item
				var me = $(this);
				var isSelected = me.attr("selected"); // bool value, based on whether the "selected" attribute is present or not
				me.removeAttr("disabled"); // clear the disabled attribute if present
				me.siblings("label").removeClass("disabled"); // same with the associated label element
				if (isSelected != empty &amp;&amp; isSelected != ""){
					id = $(this).attr("id"); // set our tmp id var to our currently selected item
				}
			});
			// make sure we have an id, otherwise we'll get an error
			if (id != empty &amp;&amp; id != ""){
				buttons.each(function(){ // loop through each radio button once again
					if ($(this).attr("id") != id){ // set the disabled attributes if id attribute doesn't match our tmp id var
						$(this).attr("disabled", "disabled").siblings("label").addClass("disabled");
					}
				});
			}
		}

	});

I've commented as best I could, which hopefully makes more sense than my rambling above. Once again, there is a working demo available for you to play with. Be sure to have a look at the markup as well, might clear up a few questions.

I strongly suspect that there's a more efficient method for achieving the same result - so if you have a better suggestion, tweak or link please let me know - I'd greatly appreciate it.

Live Demo

Editors Note - PHP Book Giveaway

I'll be announcing the winner for the PHP For Absolute Beginners book giveaway on monday, so now is your last second chance to get your comment in for a chance to win. See here for more details and to enter.

Tags: , , , ,

If you enjoyed this article, you might consider subscribing to our rss feed to stay updated with all the latest tips and articles!

ABOUT THIS AUTHOR

Barry is a self professed PHP ninja and jQuery guru wannabe. Currently working as a freelancer, his free time is divided between personal projects and trying to help other developers find useful resources and solve common problems. You can learn more about Barry and his work on his website, or you can catch up with him via twitter ( @barryroodt ).
  1. December 20, 2009 at 9:19 am
    • December 20, 2009 at 9:46 am
      • December 20, 2009 at 9:55 am
  2. December 20, 2009 at 2:20 pm
  3. deeja
    December 28, 2009 at 7:02 pm
  4. December 28, 2009 at 10:11 pm
  5. March 26, 2010 at 12:05 pm
  6. Emil
    April 17, 2010 at 10:50 am

Trackbacks/Pingbacks

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Popular Series

Output Buffering Articles
Build a Custom AJAX and PHP Contact Form
The Ultimate Image Gallery Manager.
ThemeForest Premium Site and WordPress Templates