1 <body style=
"margin-left:0; margin-top:0">
5 var item
= top
.document
.createElement("li");
6 item
.appendChild(document
.createTextNode(message
));
7 top
.document
.getElementById("log").appendChild(item
);
10 function logMouseEvent(evt
)
12 target
= (evt
.target
) ? evt
.target
: evt
.srcElement
;
13 log(evt
.type
+ " on " + target
.id
);
16 function doOnMouseOver(evt
)
19 document
.getElementById("t1").style
.backgroundColor
= "white";
22 function doOnMouseOut(evt
)
25 document
.getElementById("t1").style
.backgroundColor
= "gray";
29 <div style=
"height: 50; width: 50; background:red; top:0;left:0; position:absolute;" id=
"t1"
30 onMouseOver=
"doOnMouseOver(event);"
31 onMouseOut=
"doOnMouseOut(event)">1</div>