Thursday, March 13, 2008

jQuery Plugin - Radio button with Checkbox Behavior

Ever wanted Radio-button group which could be deselected once you click on any of the choice from given radio button group?

Then here is my simple jQuery plugin which you can use to make all your radio-buttons in the form behave like checkbox. Here by checkbox I mean to give Click to select and click-again to de-select kind of functionality.

How to use?


$(document).ready(function(){
$(":radio").behaveLikeCheckbox();
});


For more details checkout live demo or goto jQuery plugin repository.

Visit my blog home @ http://blogs.digitss.com

No comments: