Autolink using java script !!

Started by ram, Aug 13, 2008, 01:34 PM

Previous topic - Next topic

ram

Hi [you],

Autolink

Automatic jump to a url on when the mouse moves over a link

Source code :


<html>

<head>
title>Auto Link</title>

<script language="javascript1.1">
function auto_link(sURL)
{
location.href=sURL;
}
</script>
</head>
<body>
<a href="javascript:void(0);" onMouseOver="auto_link(' http://www.aaaay.net/~daamn/vb5.html');">Black Belt Visual Basic</a>
</body>

</html>