Mega Code Archive

 
Categories / JavaScript Reference / Javascript Methods
 

GetElementById() Example

<html> <body> <script language="JavaScript"> function function1() {     var m = document.getElementById("myA");     alert(m.innerText);  }  </script> <p>Click in the following element:</p> <a id="myA"     href="http://www.rntsoft.com"     onclick="return(false);"     onmouseup="function1();">Hyper link to rntsoft.com </a> </body> </html>