ऑनफोकस घटना तब ट्रिगर होती है जब किसी तत्व को फोकस प्राप्त करना होता है। onfocusin . को लागू करने का तरीका जानने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं जावास्क्रिप्ट में घटना -
उदाहरण
<!DOCTYPE html> <html> <body> <p>Write below:</p> <input type="text" onfocusin="newFunc(this)"> <script> function newFunc(x) { x.style.background = "blue"; } </script> </body> </html>