Question: Write and register an event handler that changes the background color of the h1 tag to gold on mouseout. CODE: html: Header 1 Header 2
Write and register an event handler that changes the background color of the h1 tag to gold on mouseout.
CODE:
html:
Header 1
Header 2
Header 3
Paragraph
Example.orgJavascript:
var h1Element = document.getElementsByTagName("h1")[0];
/* Your solution goes here */
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
