I am going to make a button to take an action and save the data into a database.
Once the user clicks on the button, I want a JavaScript alert to offer “yes” and “cancel” options. If the user selects “yes”, the data will be inserted into the database, otherwise no action will be taken.
How do I display such a dialog?
016 Answers
You’re probably looking for confirm(), which displays a prompt and returns true or false based on what the user decided:
if (confirm('Are you sure you want to save this thing into the database?')) { // Save it! console.log('Thing was saved to the database.'); } else { // Do nothing! console.log('Thing was not saved to the database.'); }7var answer = window.confirm("Save data?"); if (answer) { //some code } else { //some code } Use window.confirm instead of alert. This is the easiest way to achieve that functionality.
How to do this using 'inline' JavaScript:
<form action=""> <input type="text" name="q" /> <input type="submit" value="Go" onclick="return confirm('Are you sure you want to search Google?')" /> </form> 4Avoid inline JavaScript - changing the behaviour would mean editing every instance of the code, and it isn’t pretty!
A much cleaner way is to use a data attribute on the element, such as data-confirm="Your message here". My code below supports the following actions, including dynamically-generated elements:
aandbuttonclicksformsubmitsoptionselects
jQuery:
$(document).on('click', ':not(form)[data-confirm]', function(e){ if(!confirm($(this).data('confirm'))){ e.stopImmediatePropagation(); e.preventDefault(); } }); $(document).on('submit', 'form[data-confirm]', function(e){ if(!confirm($(this).data('confirm'))){ e.stopImmediatePropagation(); e.preventDefault(); } }); $(document).on('input', 'select', function(e){ var msg = $(this).children('option:selected').data('confirm'); if(msg != undefined && !confirm(msg)){ $(this)[0].selectedIndex = 0; } }); HTML:
<!-- hyperlink example --> <a href="">Anchor</a> <!-- button example --> <button type="button">Button</button> <!-- form example --> <form action=""> <button type="submit">Submit</button> </form> <!-- select option example --> <select> <option>Select an option:</option> <option>Here</option> </select> 5You have to create a custom confirmBox. It is not possible to change the buttons in the dialog displayed by the confirm function.
jQuery confirmBox
<div> <div></div> <span>Yes</span> <span>No</span> </div> function doConfirm(msg, yesFn, noFn) { var confirmBox = $("#confirmBox"); confirmBox.find(".message").text(msg); confirmBox.find(".yes,.no").unbind().click(function() { confirmBox.hide(); }); confirmBox.find(".yes").click(yesFn); confirmBox.find(".no").click(noFn); confirmBox.show(); } Call it by your code:
doConfirm("Are you sure?", function yes() { form.submit(); }, function no() { // Do nothing }); Pure JavaScript confirmBox
<div>confirmation <button>Yes</button> <button>No</button> </div> <button onclick="doSomething()">submit</button> Script
<script> function doSomething(){ document.getElementById('id_confrmdiv').style.display="block"; //this is the replace of this line document.getElementById('id_truebtn').onclick = function(){ // Do your delete operation alert('true'); }; document.getElementById('id_falsebtn').onclick = function(){ alert('false'); return false; }; } </script> CSS
body { font-family: sans-serif; } #id_confrmdiv { display: none; background-color: #eee; border-radius: 5px; border: 1px solid #aaa; position: fixed; width: 300px; left: 50%; margin-left: -150px; padding: 6px 8px 8px; box-sizing: border-box; text-align: center; } #id_confrmdiv button { background-color: #ccc; display: inline-block; border-radius: 3px; border: 1px solid #aaa; padding: 2px; text-align: center; width: 80px; cursor: pointer; } #id_confrmdiv .button:hover { background-color: #ddd; } #confirmBox .message { text-align: left; margin-bottom: 8px; } 9Or simply:
<a href="" onclick="return confirm('Are you sure you want to go to that link?');">click me!</a> 1This plugin can help you jquery-confirm easy to use
$.confirm({ title: 'Confirm!', content: 'Simple confirm!', confirm: function(){ alert('Confirmed!'); }, cancel: function(){ alert('Canceled!') } }); You can intercept the onSubmit event using JavaScript.
Then call a confirmation alert and then grab the result.
0This a full responsive solution using vanilla javascript :
// Call function when show dialog btn is clicked document.getElementById("btn-show-dialog").onclick = function(){show_dialog()}; var overlayme = document.getElementById("dialog-container"); function show_dialog() { /* A function to show the dialog window */ overlayme.style.display = "block"; } // If confirm btn is clicked , the function confim() is executed document.getElementById("confirm").onclick = function(){confirm()}; function confirm() { /* code executed if confirm is clicked */ overlayme.style.display = "none"; } // If cancel btn is clicked , the function cancel() is executed document.getElementById("cancel").onclick = function(){cancel()}; function cancel() { /* code executed if cancel is clicked */ overlayme.style.display = "none"; }.popup { width: 80%; padding: 15px; left: 0; margin-left: 5%; border: 1px solid rgb(1,82,73); border-radius: 10px; color: rgb(1,82,73); background: white; position: absolute; top: 15%; box-shadow: 5px 5px 5px #000; z-index: 10001; font-weight: 700; text-align: center; } .overlay { position: fixed; width: 100%; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.85); z-index: 10000; display :none; } @media (min-width: 768px) { .popup { width: 66.66666666%; margin-left: 16.666666%; } } @media (min-width: 992px) { .popup { width: 80%; margin-left: 25%; } } @media (min-width: 1200px) { .popup { width: 33.33333%; margin-left: 33.33333%; } } .dialog-btn { background-color:#44B78B; color: white; font-weight: 700; border: 1px solid #44B78B; border-radius: 10px; height: 30px; width: 30%; } .dialog-btn:hover { background-color:#015249; cursor: pointer; }<div> <p>Lorem ipsum dolor sit amet. Aliquam erat volutpat. Maecenas non tortor nulla, non malesuada velit.</p> <p>Aliquam erat volutpat. Maecenas non tortor nulla, non malesuada velit. Nullam felis tellus, tristique nec egestas in, luctus sed diam. Suspendisse potenti.</p> </div> <button>Ok</button> <div> <div> <p>This will be saved. Continue ?</p> <div> <button>Cancel</button> <button>Ok</button> </div> </div> </div>Another way to do this:
$("input[name='savedata']").click(function(e){ var r = confirm("Are you sure you want to save now?"); //cancel clicked : stop button default action if (r === false) { return false; } //action continues, saves in database, no need for more code }); xdialog provides a simple API xdialog.confirm(). Code snippet is following. More demos can be found here
document.getElementById('test').addEventListener('click', test); function test() { xdialog.confirm('Are you sure?', function() { // do work here if ok/yes selected... console.info('Done!'); }, { style: 'width:420px;font-size:0.8rem;', buttons: { ok: 'yes text', cancel: 'no text' }, oncancel: function() { console.warn('Cancelled!'); } }); }<link href="" rel="stylesheet"/> <script src=""></script> <button>test</button>4Made super simple, tiny vanilla js confirm dialog with Yes and No buttons.
It's a pity we can't customize the native one.
I'm currently working on a web workflow which already has it's own notifications/dialog boxes, and I recently (like, today) created a tiny, custom (and tailored to the project needs) YES/NO dialog box.
All dialog boxes appeard over a modal layer. Full user attention is required.
I define the options configurations in this way. This options are used to define the buttons text, and the values associated to each button when there clicked:
optionsConfig = [ { text: 'Yes', value: true }, { text: 'No', value: false } ] The use of the function goes something like this:
const answer = await notifier.showDialog('choose an option', options.config); if (answer) { // 'Yes' was clicked } else { // 'No' was clicked! } What I do, it's simply creating a async event handler for each option, it means, there is a simple handler assigned to each button. Each handler returns the value of the option. The handlers are pushed inside an array. The array is then passed to Promise.race, and that is the return value of the showDialog method, which will correspond to the value's actual value (the one returned by the handler).
Can't provide too much code. As I said it's a very specific case, but the idea may be usefull for other implementations. Twenty lines of code or so.
Another solution apart from the others is to use the new dialog element. You need to make use of show or showModal methods based on interactivity with other elements. close method can be used for closing the open dialog box.
<dialog> <button>Yes</button> <button>No</button> </dialog> const dialogEl = document.querySelector("dialog"); const openDialog = document.querySelector("button.open-dialog"); const yesBtn = document.querySelector(".yes"); const noBtn = document.querySelector(".no"); const result = document.querySelector(".result"); openDialog.addEventListener("click", () => { dialogEl.showModal(); }); yesBtn.addEventListener("click", () => { // Below line can be replaced by your DB query result.textContent = "This could have been your DB query"; dialogEl.close(); }); noBtn.addEventListener("click", () => { result.textContent = ""; dialogEl.close(); });@import url('); body { font-family: "Roboto"; } button { background: hsl(206deg 64% 51%); color: white; padding: 0.5em 1em; border: 0 none; cursor: pointer; } dialog { border: 0 none; } .result { margin-top: 1em; }<dialog> <button>Yes</button> <button>No</button> </dialog> <button>Click me</button> <div></div>Right now the compatibility is great with all the modern browsers.
The easiest way to ask before action on click is following
<a onclick="return askyesno('Delete this record?');" href="example.php?act=del&del_cs_id=<?php echo $oid; ?>"> <button>Delete </button> </a> 3document.getElementById("button").addEventListener("click", function(e) { var cevap = window.confirm("Satın almak istediğinizden emin misiniz?"); if (cevap) { location.href=' } }); 1
