Mega Code Archive

 
Categories / JavaScript Reference / Event Handlers Reference
 

OnActivate Example

<head> <script language="JavaScript">    function function1() {      window.open("http://www.rntsoft.com/", "", "width=700, height=600, resizable, scrollbars")    } </script></head> <body>     <label for="myL" accesskey="L">Press Alt+L to invoke the link </label>     <a id="myL" href="http://www.rntsoft.com/" target=_blank onActivate="function1()">      www.rntsoft.com     </a> </body>