37
(Choose 1 answer)
What is used to insert at the [MISSING] to change the opacity property of the div tag?
A. nothing
B. style
C. getElementById
D. property
<script>
function myFunction(obj){
obj.[MISSING].opacity=0.5;
}
</script>
<div onmouseover="myFunction(this)">over mouse here to change</div>