Javascript examples for DOM Event:addEventListener
The onfocusin event occurs when an element is about to get focus.
Bubbles | Yes |
---|---|
Cancelable | No |
Supported HTML tags: | ALL HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title> |
<!DOCTYPE html> <html> <body> Enter your name: <input type="text" id="fname"> <script> document.getElementById("fname").addEventListener("focusin", myFunction); function myFunction() {//www .j a v a2s . c o m document.getElementById("fname").style.backgroundColor = "red"; } </script> </body> </html>