Friday, September 22, 2023
HomeWeb DesignAlertify.js - Lightweight Customizable Browser Dialogs

Alertify.js – Lightweight Customizable Browser Dialogs

Alertify.js is one of best jQuery plugin to display lightweight customizable dialogs in browser window for your website when implemented. It’s a small library for presenting beautiful dialog windows and notifications. Alertify.js is easy customize via CSS. It has a good API and doesn’t depend on third-party libraries (but plays nicely with them).

Alertify js custom browser dialog

To use it, include the css and js files in the section of the webpage where you want to display your lightweight customizable browser dialogs like this:

Include JS

<!-- also works in the <head> -->
<script src="PATH_TO_FILE/alertify.min.js"></script>

Include CSS

<link rel="stylesheet" href="PATH_TO_FILE/alertify.css" />
<link rel="stylesheet" href="PATH_TO_FILE/alertify.default.css" />

Finally, call the methods of the global alertify object:

Alert Dialog

// alert dialog
alertify.alert("Message");

Confirm Dialog

// confirm dialog
alertify.confirm("Message", function (e) {
 if (e) {
 // user clicked "ok"
 } else {
 // user clicked "cancel"
 }
});

Prompt Dialog

// prompt dialog
alertify.prompt("Message", function (e, str) {
 // str is the input text
 if (e) {
 // user clicked "ok"
 } else {
 // user clicked "cancel"
 }
}, "Default Value");

Download alertify.js

Muhammad Haroonhttps://softstribe.com/
Truly yours, Muhammad Haroon is my name. Living in Karachi, Pakistan and enjoying my life playing with codes and blogging frequently, my most popular guides on Best WordPress Plugins. I founded Softstribe in 2012, when I was about to leave College. Find me on
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -

Most Popular