Top Categories
JavaScript Tutorial in Hindi Part 15: Confirm Box in JavaScript with yes no option in Hindi
- Category:
- Sub Category:
Welcome all, we will see confirm box in javascript with yes no option in Hindi. A confirmation dialog box is mostly used to take user's permission on an option. It displays a dialog box with two buttons: Ok and Cancel. If the user clicks on the OK button, the window method confirm() will retu
Welcome all, we will see confirm box in javascript with yes no option in Hindi. A confirmation dialog box is mostly used to take user's permission on an option. It displays a dialog box with two buttons: Ok and Cancel. If the user clicks on the OK button, the window method confirm() will return true. If the user clicks on the Cancel button, then confirm() returns false.