/bootsalert

Javascript alert creator library for Bootstrap Framework

Primary LanguageJavaScriptMIT LicenseMIT

BootsAlert

Simple library to create alert from Bootstrap Framework.

dependencies Status npm version

Compatibility

This library is compatible with bootstrap 3 and 4 alert.

How to Use

This code below shows you an example about how to use this library:

...
<body>
    <div id="demo"></div>
</body>
<script>
    bootsalert({
        className: "success",
        message: "be success",
        container: "demo",
        closebtn: true
    });
</script>

There's several variable that must be filled and should be filled to make this library can work perfectly:

variable type condition default details
className string required empty class name of alert provide by bootstrap. you can use success class or other class name or your own custom class
message string required empty your message to user after doing something
container string required empty alert will be inserted to this component. Selected component must have id attributes
closebtn boolean optional false specify that alert will have close button or not.
append boolean optional true bootsalert can be appended with several alert elements in one container