Jump to content

Change confirm button label from "Ok" to "Proceed"


zohab

Recommended Posts

Hi,

 

In my project i am using java script confirm dialog box and i want to change label from "ok" to "proceed"

 

We can see "Ok" "Cancel' label button on dialog box.

 

Sample example as follow.

 

 

<html>
<head>
<script type="text/javascript">
function show_confirm()
{
var r=confirm("Press a button");
if (r==true)
  {
  alert("You pressed OK!");
  }
else
  {
  alert("You pressed Cancel!");
  }
}
</script>
</head>
<body>

<input type="button" onclick="show_confirm()" value="Show confirm box" />

</body>
</html>

Sorry but that is not possible using the built-in confirm() dialogue.  Your only options are the default.  You can of course construct your own modal dialogue.  For example, a popular way to do this these days is to use jqueryui:  http://jqueryui.com/demos/dialog/#modal-confirmation

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.