Javascript examples for DOM:Quiz
Add onmouseover event to <span> element, change its color
ResultView the demo in separate window
<!DOCTYPE html> <html> <body> <span onmouseover="this.style.color='red'">Mouse over me!</span> </body>/*from w w w. j a v a 2 s .com*/ </html>