Mega Code Archive

 
Categories / JavaScript DHTML / HTML
 

Get the file name specified in the href or src property

<html> <body> <script language="JavaScript">     function function1() {         alert(document.getElementById("myLink").nameProp);     } </script> <a id="myLink" href="http://www.rntsoft.com/" target=_blank>rntsoft.com Home Page</a> <button onclick="function1();">rntsoft.com Home Page nameProp</button> </body> </html>