bootstrap5-tags
Version:
Replace select[multiple] with nices badges for Bootstrap 5
21 lines (16 loc) • 652 B
HTML
<script src="https://code.jquery.com/jquery-3.7.1.slim.min.js" integrity="sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5/dist/js/bootstrap.bundle.min.js" type="module"></script>
<div id="selects"></div>
<script type="module">
import Tags from "./tags.js";
$("#selects").html(
Array(300)
.keys()
.toArray()
.map((_) => `<select></select>`)
);
console.time("Tags");
Tags.init("select");
console.timeEnd("Tags");
</script>