0
Where would I add event handlers and events to this
https://code.sololearn.com/WZYs1TyP4VxC/?ref=app JavaScript code: For your web page(s), create and use 5 different events EXCEPT click, focus, blur, mouseover or mouseout Use the addEventListener() method Perform some action for each event addEventListener() method EXCEPT an alert. Ensure that the events are compatible with all browsers
1 Answer
0
window.addEventListener("load", function(){document.body.backgroundColor = "#aaffaa"});