1.10.8 • Published 4 years ago

bootstrap-message v1.10.8

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

jQuery Bootstrap Message

A simple jQuery plugin that displays info and error messages.

Install with npm:

bootstrap-mesage on npm

> npm i bootstrap-message

Usage

Options

All options are optional.

optionvaluesdefaultdescription
messageany text or htmlinner html of the matched elementthe message
typeinfo, errorinfothe type of message
dismisstrue, falsetrueif true, "Click to dismiss" is appended to the message and clicking it will hide the message

Methods

methodargumentsdescription
shownoneshows the message
hidenonehides the message
optionsoptionschanges the options
destroynonerestores the matched element to the state it was in before the message plugin was applied

Examples

<script type="text/javascript">
    $(document).ready(function() {
        $("#message1").message();
        $("#message2").message({ type: "error" });
        $("#message3").message({
            type: "info",
            message: "Here's an info message with dynamic content."
        });
        $("#message4").message({ dismiss: false });
        $("#message5").message();
        $("#message6").message({ dismiss: false });

        $("#message5-button").click(function() {
            $("#message5").message("options", {
                type: "error",
                message: "Error"
            });
        });

        $("#message6-hide").click(function() {
            $("#message6").message("hide");
        });

        $("#message6-show").click(function() {
            $("#message6").message("show");
        });
    });
</script>
<div id="message1">Here's an info message.</div>
<div id="message2">Here's an error message.</div>
<div id="message3"></div>
<div id="message4">Here's an info message without dismiss.</div>
<div>
    <div id="message5">
        Click the following button to change this to an error.
    </div>
    <button id="message5-button">Change to Error</button>
</div>
<div>
    <div id="message6">Click the following buttons to show or hide.</div>
    <button id="message6-hide">Hide</button>
    <button id="message6-show">Show</button>
</div>

Demo

Demo

1.10.8

4 years ago

1.10.7

4 years ago

1.10.5

4 years ago