'getElementById()' Example : getElementById : Node Operation JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Node Operation » getElementById »

 

'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.navioo.com" 
   onclick="return(false);" 
   onmouseup="function1();">This is a link
</a>
</body>
</html>

    
      
      



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Node Operation
» getElementById