Function That Wraps Document.Write, Adding a Line Break : Function : Language Basics : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Language Basics   » [  Function  ]   
 



Function That Wraps Document.Write, Adding a Line Break

Please note that some example is only working under IE or Firefox.

/*

Learn How to Program Using Any Web Browser
by Harold Davis 

Apress CopyRight 2004

ISBN: 1590591135
*/
<HTML>
<BODY>
<CENTER>
<H1>
<SCRIPT
   function writeMyWay (textIn) { 
      document.write (textIn + "<br>")
   
   <!-- Call the writeMyWay function--> 
   writeMyWay ("I")
   writeMyWay ("did")
   writeMyWay ("it")
   writeMyWay ("my")
   writeMyWay ("way!")
   </SCRIPT>
</CENTER>
</H1>
</BODY>
</HTML>


           
       
Related examples in the same category
1.  Show Args
2.  setTimeout() with a pointer to a function
3.  Define function in JavaScript
4.  Funciton with arguments
5.  Pass variables to a function, and use these variable values in the function
6.  Function that returns a value
7.  A function with arguments, that returns a value
8.  A Function Can Be Set Up to Accept a Variable Number of Arguments
9.  Accepting Either One or No Arguments
10.  Functions That Return Values Can Be Used in Expressions
11.  Using an Argument with a JavaScript Function
12.  Declaring a Function in the -=head=- Block
13.  Passing by Reference Versus Passing by Value
14.  A Function Definition
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
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.