sazimecesko
v1.0.3
Published
## Link stylesheet ```html <head> <link rel="stylesheet" href="https://unpkg.com/sazimecesko/style.min.css"> </head> ```
Readme
Usage
Link stylesheet
<head>
<link rel="stylesheet" href="https://unpkg.com/sazimecesko/style.min.css">
</head>Add div with sazimecesko-box id
<div id="sazimecesko-box"></div>You can use custom attributes data-checked and data-custom-addon-text to provide default values
<div id="sazimecesko-box" data-checked data-custom-addon-text="Kompenzujte vliv své objednávky na přírodu"></div>Add javascript code to the bottom of body
<body>
<div id="sazimecesko-box"></div>
...
<script src="https://unpkg.com/sazimecesko/script.min.js"></script>
</body>
Listen for SazimeCesko event triggered when checkbox is checked
document.addEventListener("SazimeCesko", (e) => {
console.log(e.detail.checked)
})