easy modal dialog in bootstrap
I came across this excellent bootstrap extension, Bootbox.js
which is used to show modal / alert dialog very easily.
This is a script based extension , where we shall reduce writing HTML tags by certain lines of Java Script.
(1) Include the bootbox.js script next immediately to the bootstrap.min.js
<script type="text/javascript" src="js/bootbox.min.js"></script>
(2) Write the code in JQuery Action or Javascript section.
Sample Alert:
Sample Confirm Modal Dialog
bootbox.confirm("Are you sure?", function(result) {
alert(result);
// True / False;
}
);
I found this very much useful to my project. More details about the API is available here.
http://bootboxjs.com/
I came across this excellent bootstrap extension, Bootbox.js
which is used to show modal / alert dialog very easily.
This is a script based extension , where we shall reduce writing HTML tags by certain lines of Java Script.
(1) Include the bootbox.js script next immediately to the bootstrap.min.js
<script type="text/javascript" src="js/bootbox.min.js"></script>
(2) Write the code in JQuery Action or Javascript section.
Sample Alert:
bootbox.alert("Hello world!");
Sample Confirm Modal Dialog
bootbox.confirm("Are you sure?", function(result) {
alert(result);
// True / False;
}
);
I found this very much useful to my project. More details about the API is available here.
http://bootboxjs.com/
No comments:
Post a Comment