docs:programming:javascript:javascript_notes

This is an old revision of the document!


JavaScript Notes

<html>
<head>
<title>Javascript Page</title>
<script language="JavaScript" type="text/javascript"><!--
 
function init(){
  alert("Your browser supports scripting!");
}
 
--></script>
</head>
<body onload="javascript: init();">
<h1>Javascript Page</h1>
<noscript>This will print if the user agent does not support javascript</noscript>
 
<p>This will always print.</p>
 
<script language="JavaScript" type="text/javascript"><!--
  document.write("You can also run scripts within the body of the page.");
--></script>
 
</body>
</html>
  • The standard way is document.getElementById(“elemID”)
  • IE uses document.all(“elemID”)
  • Older Netscape browsers used document.layers[elemID]
  • A utility function to get the proper element reference, regardless of browser:
    function getElem(elemID){
    	if(document.all){
    		return document.all(elemID);
    	}else if(document.getElementById){
    		return document.getElementById(elemID);
    	}else if(document.layers){
    		return document.layers[elemID];
    	}
    }
  • docs/programming/javascript/javascript_notes.1173826485.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)