Confirm box in Catalog client script
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2023 07:37 AM
I want to show a Confirm box in the Onsubmit Catalog client script with option ok and cancel, currently I'm having alert message which has only one option ok
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2023 07:47 AM
You can try adding a confirm box like so:
function onSubmit() {
var response = confirm("Are you sure you want to submit?");
return response;
}
Response will be false if user presses cancel and true if they press OK.