DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
Javascript Implementation   Share / Like

A good first step in learning Javascript is learning its implementation. The html <script> element is your document's gateway to Javascript. You can apply the <script> element in your <head> or <body> elements at will, which gives you a fair amount of script placement options directly inside your document.

Alternately you can choose to use the <script> element to bind an external Javascript file and all of its code to your document. Most Javascript authors prefer externalizing their code to call on functions waiting in the external file. Externalizing your code means you can reuse the same code on many different web pages, it makes your html code appear slimmer and cleaner, and it helps one in beginning to understand code modularity. If you are used to CSS it is much like externalizing your CSS into style sheets.

1. Using the <script> element to place code directly in the document

Javascript CODE EXAMPLE
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var who = "George";
var yrs = 2;
var mySentence = who + " has been writing script for " + yrs + " years.";
</script>
</head>
<body>
<script type="text/javascript">
document.write(mySentence);
</script>
</body>
</html>
 

2. Binding external Javascript files to the document

Javascript CODE EXAMPLE
<!DOCTYPE html>
<html>
<head>
<script src="myFile.js"></script>
</head>
<body>
<script type="text/javascript">
document.write(mySentence);
</script>
</body>
</html>

Binding external Javascript files(myFile.js) to your document is essentially the same as having the code sitting right there in the document as in the first code example above. To make it work exactly as the first example, your external Javascript file would need to have this code in it to be able to write "mySentence":

Javascript CODE EXAMPLE
var who = "George";
var yrs = 2;
var mySentence = who + " has been writing script for " + yrs + " years.";
Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5