Documentation Archive Developer
Search
Developer Documentation
PATH  WebObjects 4.0 Documentation > Dynamic Elements


WOJavaScript


Synopsis

WOJavaScript { scriptFile=aPath; | scriptString=aString; | scriptSource=aURL; [hideInComment=aBOOL;] ... };


Description

WOJavaScript lets you embed a script written in JavaScript in a dynamically generated page.


Bindings


scriptFile

Path to the file containing the script. The path can be statically specified in the declaration file or it can be an NSString, an object that responds to a description message by returning an NSString, or a method that returns an NSString.


scriptString

String containing the script. Typically, scriptString is an NSString object, an object that responds to a description message by returning an NSString, or a method that returns an NSString.


scriptSource

URL specifying the location of the script.


hideInComment

If hideInComment evaluates to YES, the script will be enclosed in an HTML comment (<!-- script //-->). Since scripts can generate errors in some older browsers that weren't designed to execute them, you may want to enclose your script in an HTML comment. Browsers designed to run these scripts will still be able to execute them despite the surrounding comment tags.



Copyright © 1998, Apple Computer, Inc. All rights reserved.