GIJGO
Examples
Documentation
Report a Bug
Download
Bootstrap 3 Checkbox
Bootstrap 4 Checkbox
Bootstrap 5 Checkbox
Material Design Checkbox
Gijgo.com
Checkbox
Examples
Material Design Checkbox
Material Design Checkbox
Checkbox control that is using Material Design theme
Preview
Front-End Code
Edit
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Checkbox</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://unpkg.com/gijgo@1.9.14/js/gijgo.min.js" type="text/javascript"></script> <link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" /> </head> <body> <input type="checkbox" id="checkbox" /><br /><br /> <button onclick="$chkb.state('checked')" class="gj-button-md">Checked</button> <button onclick="$chkb.state('unchecked')" class="gj-button-md">Unchecked</button> <button onclick="$chkb.state('indeterminate')" class="gj-button-md">Indeterminate</button> <button onclick="$chkb.prop('disabled', false)" class="gj-button-md">Enable</button> <button onclick="$chkb.prop('disabled', true)" class="gj-button-md">Disable</button> <script> var $chkb = $('#checkbox').checkbox(); </script> </body> </html>
;