Javascript examples for DOM:Quiz
Add onmouseover event to <span> element and change its color
ResultView the demo in separate window
<!DOCTYPE html> <html> <body> <span onmouseover="this.style.color='red'">Mouse over me!</span> </body>/* w ww . java2s . c o m*/ </html>