JSFiddle - React, Tailwind, and code Playground

by Tejash Soni

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/switchery/0.8.1/switchery.js  Copy"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/switchery/0.8.1/switchery.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/switchery/0.8.1/switchery.js"></script>
<input type="checkbox" id="js-switch" checked />

JavaScript

var elem = document.querySelector('.js-switch');
var switchery = new Switchery(elem);

elem.addEventListener('click', function() {
	switchery.disable();
});

elem.addEventListener('click', function() {
	switchery.enable();
});