Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n2ref/coreui-alert
CoreUI Alert
https://github.com/n2ref/coreui-alert
Last synced: about 1 month ago
JSON representation
CoreUI Alert
- Host: GitHub
- URL: https://github.com/n2ref/coreui-alert
- Owner: n2ref
- License: mit
- Created: 2023-04-08T18:17:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-22T15:21:19.000Z (7 months ago)
- Last Synced: 2024-12-19T13:31:34.438Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://n2ref.github.io/coreui-alert
- Size: 534 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)