JavaScript Tutorial/Document/ondblclick

Материал из Web эксперт
Перейти к: навигация, поиск

document.ondblclick

The onDblClick event handler specifies what should happen when the mouse is double-clicked within the Document object.



   <source lang="javascript">

<html>

   <head>
   <script language="JavaScript1.2">
   
   </script>
   </head>
   <body>
   double-click anywhere within this document.
   </body>
   </html></source>