Mega Code Archive

 
Categories / JavaScript DHTML / Event
 

H1 double click events

<html> <head> <title>A Simple Page</title> <script language="JavaScript"> function addunderline() {     head1.style.textDecoration = "underline" } function removeunderline() {     head1.style.textDecoration = "none" } function addoverline() {     head1.style.textDecoration = "overline" } function addlinethrough() {     head1.style.textDecoration = "line-through" } </script> </head> <body> <h1 id="head1"      onMouseover="addunderline()"      onMouseout="removeunderline()"      onClick="addoverline()"      ondblclick="addlinethrough()">Welcome to this page!</h1> </body> </html>