Report Bug
Qus : What is the difference between the onblur and onfocus events in JavaScript?
Qusजावास्क्रिप्ट में ऑनब्लर और ऑनफोकस इवेंट के बीच क्या अंतर है?

A. onblur fires when an element loses focus, and onfocus fires when an element gains focus
B. Both events fire when the window is minimized
C. Both events trigger when the page is loaded
D. onblur fires when an element is clicked, and onfocus fires when the mouse moves over an element


Solution
A. onblur fires when an element loses focus, and onfocus fires when an element gains focus






Report Bug