toreachdeepak Posted August 7, 2009 Report Share Posted August 7, 2009 Hi,When I use confirm box, it has two options "OK" and "Cancel".Can I have the three options"Yes", "No" and "Cancel"RegardsDeepak Link to comment Share on other sites More sharing options...
Ingolme Posted August 7, 2009 Report Share Posted August 7, 2009 (edited) No, but with logic, you can get the same result with two confirm boxes: var X = confirm("Are you sure?");if(X) X = confirm("Press 'OK' to accept changes and 'Cancel' to discard them."); The other option is building one with <div> elements and some buttons and using Javascript to make it appear. Edited August 7, 2009 by Ingolme Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now