Click here to Skip to main content
15,905,508 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am searching for confirm box in javascript with yes no buttons and i dint find my answer.
Please help me out if anyone knows the answer.

Thanks in advance
Posted

Try this:
C#
$("#id").dialog({
  buttons: {
    "Yes": function() {},
    "No": function() {}
  }
});


Add Yes and No buttons on jQuery confirmation box[^]
Yes or No confirm box using jQuery[^]

Hope this will help you.
 
Share this answer
 
Comments
Mylog.25 15-Jun-12 3:21am    
Thanks..
Mylog.25 10-Dec-12 0:51am    
Thank you..
Dear Friend,

function text_fun()
{
if (confirm("Enter Your text"))
{
Action();
}
}

This Javascript function will help you.
 
Share this answer
 
Comments
Mylog.25 15-Jun-12 3:21am    
Thanks..
Mylog.25 10-Dec-12 0:51am    
Thank you friend

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900