Multiple choice technology web technology

What do you need if you want to control user's action on client side? eg: Disable right click on browser

  1. ActiveX Control

  2. Scripting Language

  3. CSS

  4. XSLT

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Client-side scripting languages like JavaScript allow you to intercept and control browser events such as mouse clicks, keyboard input, and page interactions. For example, JavaScript can prevent the default right-click context menu by using event.preventDefault() on contextmenu events. CSS only controls presentation, while XSLT transforms XML documents - neither can handle user actions.