Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/n2ref/coreui-alert

CoreUI Alert
https://github.com/n2ref/coreui-alert

Last synced: about 1 month ago
JSON representation

CoreUI Alert

Awesome Lists containing this project

README

        

# CoreUI Alert

**[DEMO](https://n2ref.github.io/coreui-alert)**

## Install with npm
`$ npm install coreui-alert`

## Example

```html
Default
Default

$('#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') }
}
);
});

```

Result

![Alert](https://raw.githubusercontent.com/n2ref/coreui-alert/main/preview.png)