Re: Calling JavaScript when loading custom tag.

2001-01-12 Thread Jeffry Houser
A shot in the dark (and I'm not looking anything up, so this is me trying to remember something) but you could try something like: myfunction(); Something along those lines should do it. ;) Todd Ashworth wrote: > I'm working on a custom tag that has a JavaScript function in it that n

RE: Calling JavaScript when loading custom tag.

2001-01-12 Thread Todd McFarlin
When you put the onload functin in the body tag , did you define the javascript function between the ? -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 7:40 AM To: CF-Talk Subject: Calling JavaScript when loading custom tag. I'm wo

RE: Calling JavaScript when loading custom tag.

2001-01-12 Thread JustinMacCarthy
Yeah you can just do Function() from where-ever in your page. Justin >-Original Message- >From: Todd Ashworth [mailto:[EMAIL PROTECTED]] >Sent: Friday, January 12, 2001 3:40 PM >To: CF-Talk >Subject: Calling JavaScript when loading custom tag. > > >

RE: Calling JavaScript when loading custom tag.

2001-01-12 Thread Bob Silverberg
I'm not sure if this addresses what you're trying to do, but if what you want is for the javascript to execute whenever the tag is included in a browser page, just enclose the javascript in your

Calling JavaScript when loading custom tag.

2001-01-12 Thread Todd Ashworth
I'm working on a custom tag that has a JavaScript function in it that needs to be called when the tag is loaded. I tried using , but that doesn't work. Is there another way to call a function on load from a 'page' nested inside another page? My knowledge of JavaScript isn't all the great :( To