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



0 comments:
Post a Comment