Question: use strict; document.addEventListener ( DOMContentLoaded , ( ) = > { const images = document.querySelectorAll ( #image _ rollovers img ) ;

"use strict";
document.addEventListener("DOMContentLoaded",()=>{
const images = document.querySelectorAll("#image_rollovers img");
// process each img tag
for (let image of images){
const oldURL = image.src;
const newURL = image.id;
// preload rollover image
// set up event handlers for hovering an image
image.addEventListener("mouseover",()=>{
image.src = newURL;
});
image.addEventListener("mouseout",()=>{
image.src = oldURL;
});
}
});

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!