<html>
<body>
<p>This example demonstrates how to assign an "onfocusin" event to an input element.</p>
Enter your name: <input type="text" id="fname" onfocusin="myFunction()">
<p><strong>Note:</strong> Firefox does not support the onfocusin event.</p>
<script>
function myFunction() {
document.getElementById("fname").style.backgroundColor = "red";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_onfocusin_html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:02:56 GMT -->
</html>