i want to make one of the images disappear (opacity 0 ) but when the images completely load here is the code :
var imges = document.getElementsByTagName('img');
imges[0].style.opacity=0;
how to write the event of when the images load completely then do this ?
of course with vanilla javascript