Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

limitcheckbox

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

limitcheckbox

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

limitcheckbox.js

Welcome

This is a jQuery plugin that offers an easy way to setup a limit to a checkbox collection. If you have 5 checkboxes and you want to limit the selection to 3 and leave the other ones disabled, this plugin is going to work for you.

Gem Install

Add this line to your application's Gemfile:

gem 'limitcheckbox'

And then execute:

$ bundle

Or install it yourself as:

$ gem install limitcheckbox

Then include limitcheckbox.js in your javascript file

//= require limitcheckbox

Or include the minified version

//= require limitcheckbox-min

Manual Install

Make sure to include jQuery in your page.

<script src="jquery.min.js"></script>

And then include limitcheckbox.js. There unminified version it's located at the src folder. The minified version its located at the build folder.

<script src="js/limitcheckbox-min.js"></script>

Usage

5 checkboxes and I want to set a limit of 3.

<div id="checkboxes">
    <input type="checkbox" /> <!-- 1 -->
    <input type="checkbox" /> <!-- 2 -->
    <input type="checkbox" /> <!-- 3 -->
    <input type="checkbox" /> <!-- 4 -->
    <input type="checkbox" /> <!-- 5 -->
</div>
$('#checkboxes').limitCheckbox(3);

Callback

$('#checkboxes').limitCheckbox(3, {
  callback: function() {
    // Options
  }
);

Notice that limitcheckbox.js will check the checkboxes from your main element when called in order to disable if they're already checked.

Demo

Click here.

FAQs

Package last updated on 06 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc