Script Categories













Messages >>> Show Link Info.

Let your visitor know exactly where a link will send them. This short script displays the domain the link points to as well as the filename of the page in the status bar at the bottom bar of the browser window.

JavaScript Editor

Add the below code to the <body> section of your page:

<script language="javascript" type="text/javascript">      
/* Visit http://www.yaldex.com/ for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin
function linkInfo(link){
fname  = link.pathname;
lastSlash = fname.lastIndexOf("/", fname.length);
fname  = fname.substring(lastSlash+1, fname.length);
return("Visit " + link.hostname + "'s " + fname + " page");
}
//  End -->
</script>
<a href="http://yaldex.com/JSFactory_Pro.htm" onMouseOver="window.status=linkInfo(this); return true;" onMouseOut="window.status=''; return true;">JavaScript Editor</A>

JavaScript Editor Get Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.



Code was highlighted by 1st JavaScript Editor (The Best JavaScript Editor!).




©