javascript – What would be a good way to apply the events: onMouseOver and onMouseOut, for all img tags?
Question: I need this function to be automated so that it applies to all images built on the HTML document without any exception Code function aumenta(obj) { obj.height = obj.height * 2; obj.width = obj.width * 2; } function diminui(obj) { obj.height = obj.height / 2; obj.width = obj.width / …