Skip to content

muratgorken/jquery-deselectable-radioboxes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Make radioboxes deselectable.

Hey! I just need simple solution for deselectable radioboxes. I writed that plugin. It's not best solution probably but it works! It's so simple to use.

preview of pluging

Getting Started

Add a script to your html:

<script src="src/jquery-deselectable-radioboxes.js"></script>

<script type="text/javascript">
	$(document).ready(function(){
		$("input[name='select_type']").deSelectable();
	});
</script>

Example html

<div class="form-check">
	<input class="form-check-input" type="radio" id="flexRadioDefault1" name="select_type" value="espresso"/>
	<label class="form-check-label" for="flexRadioDefault1">Espresso</label>
</div>
<div class="form-check">
	<input class="form-check-input" type="radio" id="flexRadioDefault2" name="select_type" value="double_espresso" checked />
	<label class="form-check-label" for="flexRadioDefault2">Double Espresso</label>
</div>

Note: Please make sure input element has name and value properties

Requirements

jQuery above 1.7 (including 2.x and 3.x).

About

Plugin that give deselectable ability to html radioboxes

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages