Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <p>Use the HTML DOM to assign an "onfocus" event to an input element.</p> Enter your name: <input type="text" id="fname"> <script> document.getElementById("fname").onfocus = function() {myFunction()}; function myFunction() { document.getElementById("fname").style.backgroundColor = "red"; } </script> </body> </html>