0.0.2 • Published 4 months ago
bootstrap5-confirm v0.0.2
Bootstrap Confirm
A simple Bootstrap-based confirmation modal for JavaScript.
Installation
npm install bootstrap5-confirm
pnpm install bootstrap5-confirm
bun install bootstrap5-confirm
Usage
import BootstrapConfirm from "bootstrap5-confirm";
new BootstrapConfirm({
selector: ".delete-btn",
message: "Are you sure you want to delete this?",
onConfirm: () => console.log("Confirmed!"),
});