Home Answers Viewqa JavaScriptQuestions How to create a confirmation box?

 
 


samar
How to create a confirmation box?
1 Answer(s)      2 years and 7 months ago
Posted in : JavaScript Questions

How to create a confirmation box?

View Answers

November 10, 2010 at 2:58 PM


Confirm boxes are a convenient way to give a web visitor a simple choice: to accept or to decline something. They are displayed using the JavaScript confirm function.

for example-

confirm("Text or question you want to use");

The code is as -

<script type="text/javascript">
function show(){
var c= confirm("This is the comfirm box");
if(c == true)
{
alert("You select ok");
}
if(c== false)
{
alert("You select cancel");
}
}
</script>









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.