vote up 1 vote down star

Possible Duplicates:
Javascript Confirm popup Yes, No button instead of OK and Cancel
Code to ask yes/no question in javascript

how can i make a yes/no dialog box in javascript?

flag

43% accept rate
1  
Exact dupe: stackoverflow.com/questions/823790/… – Triptych Sep 11 at 16:15
1  
Closer dupe is question 19280 – Bob Sep 11 at 16:17

closed as exact duplicate by Triptych, Bob, Peter Bailey, SilentGhost, Crescent Fresh Sep 11 at 16:50

4 Answers

vote up 0 vote down check

See http://jqueryui.com/demos/dialog/

And click the "modal-confirmation" on the right...

link|flag
vote up 1 vote down

You may need to custom code a div with the two buttons, one yes and one no, which link back to a javascript function that saves that value or performs an action based on that value.

i.e.

function YesNoDialog(result)
{
var x = result;
}

then in the button for yes

onclick="YesNoDialog(1)"

and the button for no

onclick="YesNoDialog(0)"
link|flag
vote up 4 vote down

You can't have a native yes/no, but you can make a confirm box which display an ok/cancel box

var result = confirm("Question");

There are other non-native alternatives, see this question

http://stackoverflow.com/questions/19280/code-to-ask-yes-no-question-in-javascript

link|flag
yes i know that but how can i make it a yes/no? – noob Sep 11 at 16:14
His first words were "You can't". That's your answer. – Joel Coehoorn Sep 11 at 16:20
No. You would have to do it with on-page clickable elements. See the linked question. – bobince Sep 11 at 16:21
vote up 1 vote down

Use confirm (though it will be OK/Cancel, not Yes/No):

var result = confirm("Should I do a thing?");
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.