JavaScript
__________
I use this code to show box contain (OK) button:
alert("welcome");
Is there any code to show Box contain (Ok) and (Cancel) buttons or (Yes) and (No) buttons ?
Printable View
JavaScript
__________
I use this code to show box contain (OK) button:
alert("welcome");
Is there any code to show Box contain (Ok) and (Cancel) buttons or (Yes) and (No) buttons ?
You can try
confirm("hello");
this will give you a yes cancel message box
hope it helps
bsw2112