फ़ोकस ईवेंट तब सक्रिय होता है जब कोई तत्व फ़ोकस प्राप्त करता है या खो देता है। फोकसइवेंट निम्नलिखित हैं -
<टेबल><थेड>जावास्क्रिप्ट में फोकस इवेंट के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
input {
padding: 10px;
}
</style>
</head>
<body>
<h1>Focus events in Javascript</h1>
<form id="form">
<input type="text" placeholder="Username" />
<input class="passW" type="password" placeholder="Password" />
</form>
<h3>Focus on the above password input box to change its background color</h3>
<script>
let passEle = document.querySelector(".passW");
passEle.addEventListener("focus", () => {
passEle.style.backgroundColor = "#90EE90";
});
</script>
</body>
</html> आउटपुट

पासवर्ड फ़ील्ड पर ध्यान केंद्रित करने पर -
