JQuery Bootbox Modal Dialog Prompt Example
We sometimes need to use prompt with input in our project because if we use prompt modal is very interesting and specially for GUI. Always we like to use prompt modal for creating data or editing data and also for conformation. In this example i use bootbox JS for prompt modal with input that way we can get input value easily.
You can try this:
Example:
<html lang="en">
<head>
<title>Jquery - bootstrap Prompt modal using bootbox.js</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.4.0/bootbox.min.js"></script>
</head>
<body>
<div class="container text-center">
<h2>Jquery - bootstrap Prompt modal using bootbox.js</h2>
<button class="btn btn-success">Click Here</button>
</div>
<script type="text/javascript">
$("button").click(function(){
bootbox.prompt("Write sometext here?", function(result) {
$("button").after("<br/>Your Text: " + result);
});
});
</script>
</body>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- PHP JQuery Ajax Post Request Example
- How to Disable Browser Back Button using JQuery?
- PHP MySQL Confirmation Before Delete Record using Ajax Example
- How to Change Date Format in JQuery?
- PHP JQuery Ajax Image Upload Example Tutorial
- PHP Ajax Dependent Dropdown List Example
- How to Copy Text to Clipboard without Flash using JQuery?
- How to Get Gravatar Image from Email using JQuery?
- How to Stop Setinterval() After Sometimes in JQuery?
- How to Remove Comma from String in JQuery?
- PHP Crop Image Before Upload using Croppie JS Example
- How to Get IP Address in JQuery?
- Check and Uncheck All Checkbox using JQuery Example
- How to Check Undefined, Empty and Null in JQuery?