coreui-alert

1.1.5 • Public • Published

CoreUI Alert

DEMO

Install with npm

$ npm install coreui-alert

Example

<button id="alert-default" class="btn btn-secondary">Default</button>
<button id="confirm-default" class="btn btn-secondary">Default</button>

<script>
    $('#alert-default').click(function () {
        CoreUI.alert.default("Alert title", "Raw denim you probably haven't heard of them jean shorts Austin?");
    });

    $('#confirm-default').click(function () {
        CoreUI.alert.default(
                "Confirm title",
                "Raw denim you probably haven't heard of them jean shorts Austin?",
                {
                    btnAcceptText: "Ok",
                    btnAcceptEvent: function () { console.log('Ok') },
                    btnRejectText: "Cancel",
                    btnRejectEvent: function () { console.log('Cancel') }
                }
        );
    });
</script>

Result

Alert

/coreui-alert/

    Package Sidebar

    Install

    npm i coreui-alert

    Weekly Downloads

    2

    Version

    1.1.5

    License

    MIT

    Unpacked Size

    223 kB

    Total Files

    23

    Last publish

    Collaborators

    • n2ref