<!DOCTYPE html>
<html>
<body>
<p>This example uses the addEventListener() method to attach a "focus" event to an input element.</p>
Enter your name: <input type="text" id="fname">
<script>
document.getElementById("fname").addEventListener("focus", myFunction);
function myFunction() {
document.getElementById("fname").style.backgroundColor = "red";
}
</script>
</body>
</html>