A Function Definition : Function « Language Basics « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Language Basics » Function 
A Function Definition
   
<HTML>
<HEAD>
<TITLE>A function definition</TITLE>
<SCRIPT LANGUAGE="JavaScript"><!--
function displayTaggedText(tag, text) {
 document.write("<"+tag+">")
 document.write(text)
 document.write("</"+tag+">")
}
// -->
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript"><!--
displayTaggedText("H1","This is a level 1 heading")
displayTaggedText("P","This text is the first paragraph of the document.")
// -->
</SCRIPT>
</BODY>
</HTML>
           
         
    
    
  
Related examples in the same category
1. Show Arguments
2. Function That Wraps Document.Write, Adding a Line Break
3. setTimeout() with a pointer to a function
4. Define function in JavaScript
5. Funciton with arguments
6. Pass variables to a function, and use these variable values in the function
7. Function that returns a value
8. A function with arguments, that returns a value
9. A Function Can Be Set Up to Accept a Variable Number of Arguments
10. Accepting Either One or No Arguments
11. Functions That Return Values Can Be Used in Expressions
12. Using an Argument with a JavaScript Function
13. Declaring a Function in the 'head' Block
14. Passing by Reference Versus Passing by Value
15. Using the Function Object
16. Passing the Form Object as a Parameter
17. Calling a Function from an Event Handler
18. A Function's arguments and caller Properties
19. Variable Scope Workbench Page
20. Calling a Generalizable Function
21. Simplest function
22. Pass string value in and return string value out
23. A function with only one statement
24. Call your function
25. Nested function call
26. Define a function to accept the string value
27. Call a javascript function with javascript:void()
28. Return an incremented value
29. Check the function parameters
30. Save returned value from a function to a variable
31. Invoking third argument as function
32. Array filter and callback functions
33. Function is Object
34. Call function in body onload event
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.