1.9.13 • Published 5 years ago

checkbox-bootstrap v1.9.13

Weekly downloads
3
License
MIT
Repository
-
Last release
5 years ago

Checkbox by Gijgo.com is a plug-in for the jQuery Javascript library. It is a very fast and extandable tool, and will add advanced interaction controls to any checkbox. This plugin allows you to create checkboxes using bootstrap or material design styles. Free open source tool distributed under MIT License.

  1. Bootstrap Checkbox

  2. Bootstrap 4 Checkbox

  3. Material Design Checkbox

<html>
<head>
    <meta charset="utf-8" />
    <title>Checkbox example</title>
    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
    <script src="/js/core.js" type="text/javascript"></script>
    <script src="/js/checkbox.js"></script>
    <link href="/css/core.css" rel="stylesheet" type="text/css">
    <link href="/css/checkbox.css" rel="stylesheet" type="text/css">
</head>
<body>
    <label for="chkb-unchecked">Unchecked:</label> <input type="checkbox" id="chkb-unchecked" /> &nbsp; &nbsp;
    <label for="chkb-checked">Checked:</label> <input type="checkbox" id="chkb-checked" /> &nbsp; &nbsp;
    <label for="chkb-indeterminate">Indeterminate:</label> <input type="checkbox" id="chkb-indeterminate" /> &nbsp; &nbsp;
    <label for="chkb-disabled">Disabled:</label> <input type="checkbox" id="chkb-disabled" />
    <script>
        $('#chkb-unchecked').checkbox();
        $('#chkb-checked').checkbox().state('checked');
        $('#chkb-indeterminate').checkbox().state('indeterminate');
        $('#chkb-disabled').checkbox().state('checked').prop('disabled', true);
    </script>
</body>
</html>
1.9.13

5 years ago

1.9.12

5 years ago

1.9.11

5 years ago

1.8.0

6 years ago

1.7.2

6 years ago

1.6.1

6 years ago

1.6.0

7 years ago

1.5.1

7 years ago

1.5.0

7 years ago