Question:How would you double the size of an image on a mouseover event, if the original width and height are both 100px and the id of the image is 'logo'?
A document.getElementById('logo').style.width="200" document.getElementById('logo').style.height="200"
B document.getElementById('logo').style.width="100" document.getElementById('logo').style.height="100"
C document.getElementById('logo').width="200" document.getElementById('logo').height="200"
D document.getElementById('logo').width="100" document.getElementById('logo').height="100"
+ AnswerC
+ Report