[thelist] Using LAYER as a floating frame.

Jeff jeff at members.evolt.org
Mon Jun 19 18:59:56 2000


michael,

:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: Michael Galvin <mpgalvin@eircom.net>
:
: <SELECT ...
: onchange="javascript:load(this.options[this.selectedIndex].value);">
:
: <BODY ...
: onload="javascript:load('http://www.subclear.com/cgi-local/readcsv.pl');">
:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

just as a sidenote - you don't need to prepend the function name with
javascript: in the event handlers.  javascript is the default scripting
language and it's understood to be javascript.  so, you can change the above
to:

<SELECT ...
onchange="load(this.options[this.selectedIndex].value);">

<BODY ...
onload="load('http://www.subclear.com/cgi-local/readcsv.pl');">

good luck,

.jeff

name://jeff.howden
game://web.development
http://www.evolt.org/
mailto:jeff@members.evolt.org