Posts Tagged Plugins

jQuery Fancy Custom Radio-button and Checkbox

Fancy Radio-button and Checkbox

Fancy Radio/ Checkbox

I have written a jQuery Plugin for Fancy Custom Checkbox and Radio-buttons. To make form elements visually more expressive. I required this for one of my project and later on I have rewritten it completely to make it more generic and easier for jQuery Lovers. I am great fan of jQuery and I am inspired by http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/ to write this plugin.

It's fairly easy to use just like any other jQuery plugin you just have to write couple of lines of javascript code and add some CSS to your html.

Javascript You need:

$(document).ready(function(){
	$(".radio").dgStyle();
	$(".checkbox").dgStyle();
});

Read the rest of this entry »

Tags: , , ,

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.

Update: Radio-buttons with Checkbox behavior - a jQuery Plugin 1.2.5

Tags: , , , ,