Skip to content

jQuery/CSS plugin for facilitating a dropdown container for checkbox items

Notifications You must be signed in to change notification settings

daleyjem/checky-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

checky-js

jQuery/CSS plugin for facilitating a dropdown container for checkbox items

HTML Markup:

<!-- jQuery is required -->
<script src="jquery.js"></script>
<!-- Checky file includes -->
<script src="checky.js"></script>
<link rel="stylesheet" type="text/css" href="checky.css">

<!-- Initialize checky -->
<script>
  $(document).ready(function(){
  	$('.checky').checky();
  });
</script>

<!-- Our dropdown list -->
<div class="checky">
	<span class="checky-label">Select some stuff</span>
	<div class="checky-options">
		<label><input type="checkbox" id="chk0" name="chk[]">Yo</label>
		<label><input type="checkbox" id="chk1" name="chk[]">Dude</label>
		<label><input type="checkbox" id="chk2" name="chk[]">Mon</label>
	</div>
</div>

About

jQuery/CSS plugin for facilitating a dropdown container for checkbox items

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published