2. Write a JavaScript to create
a. Alert Dialog Box
b. Confirmation Dialog Box
c. Prompt Dialog box
5. Write a JavaScript to disable right click on the page
Here is code:
// a.Alert Dialog Box
alert("This is alert box");
// b.Confirmation Dialog Box
confirm("This is confirmation box");
// c.Prompt Dialog box
prompt("This is prompt box");
// 5. Write a JavaScript to disable right click on the page
document.addEventListener('contextmenu', event => event.preventDefault());
Here is code with html:
<!DOCTYPE html>
<html>
<head>
<script>
// a.Alert Dialog Box
alert("This is alert box");
// b.Confirmation Dialog Box
confirm("This is confirmation box");
// c.Prompt Dialog box
prompt("This is prompt box");
// 5. Write a JavaScript to disable right click on the page
document.addEventListener('contextmenu', event => event.preventDefault());
</script>
</head>
<body>
</body>
</html>
Output:



2. Write a JavaScript to create a. Alert Dialog Box b. Confirmation Dialog Box c. Prompt...