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 Functions   Share / Like

Functions are segments of your script that do not run until they are called to execute in your document. They can be executed by HTML events or Javascript events, and they will only run when that event fires off. The various examples below lend good insight into the aspects of function creation.

Any user initiated event can make your function run

Javascript CODE EXAMPLE
<script type="text/javascript">
function myFunction(){
    var status = document.getElementById("status");
    status.innerHTML = "You just made my function run.";
}
</script>
<p><input type="button" value="Click Me" onclick="myFunction()"></p>
<h3 id="status"></h3>
 

 

An event of the window or document can make your function run

Javascript CODE EXAMPLE
<script type="text/javascript">
function myFunction(){
    var status = document.getElementById("status");
    status.innerHTML = "The page finishing loading made my function run.";
}
window.onload = myFunction;
</script>
<h3 id="status"></h3>
 

 

Make your functions more powerful by adding arguments

Arguments are an aspect of function creation that make your functions much more dynamic, useful and reusable. You can apply one or more arguments to your functions, if applying multiple arguments be sure to separate each by a comma.

Javascript CODE EXAMPLE
<script type="text/javascript">
function myFunction(v1,v2,v3){
    var status = document.getElementById("status");
    status.innerHTML = v2+" has known "+v1+" for "+v3+" years.";
}
</script>
<p><input type="button" value="Click Me" onclick="myFunction('Joe','Ben',7)"></p>
<h3 id="status"></h3>
 

 

Javascript does not require an event necessarily in order to run a function

Javascript CODE EXAMPLE
function myFunction(){
    alert("Function called to run by Javascript");
}
myFunction(); // calls the function run

 

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