zohab Posted March 30, 2011 Share Posted March 30, 2011 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> Quote Link to comment https://forums.phpfreaks.com/topic/232143-change-confirm-button-label-from-ok-to-proceed/ Share on other sites More sharing options...
gizmola Posted March 30, 2011 Share Posted March 30, 2011 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 Quote Link to comment https://forums.phpfreaks.com/topic/232143-change-confirm-button-label-from-ok-to-proceed/#findComment-1194147 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.