WStoreyII wrote:[color=blue]
> it there as way to build class library's of functions and stuff that can be
> used in javascript likein vb.net or c#
>
> WStoreyII
>
>[/color]
WStoreyII wrote:
[color=blue]
> it there as way to build class library's of functions and stuff that can be
> used in javascript likein vb.net or c#
>
> WStoreyII[/color]
Sure. Create your objects with their associated methods and properties, put
them in a .js file and include them on your page with:
<head>
<!-- other stuff -->
<script type="text/javascript" src="MyDictiona ry.js"></script>
</head>
<script type="text/javascript">
var y = new MyDictionary();
y.Add ("a", "test");
if (y.Exists("a")) {
document.write( "a exists in MyDictionary");
}
</script>
--
| Grant Wagner <gwagner@agrico reunited.com>
* Client-side Javascript and Netscape 4 DOM Reference available at:
*
Comment