Quote:
Originally Posted by sgadow
Logic,
I have tried that with no luck.
|
OK but keep it anyway, it's correct.
Quote:
Originally Posted by sgadow
Would I have to run each specific onchange event onload somehow?
|
It looks as though you will.
Statements to run in your onload handler:
Code:
var selects = document.getElementsByTagName( 'select' );
for( var i = 0, box; ( box = selects[ i ] ); i++ )
if( box.name.indexOf( 'ereg|' ) == 0 ) // or however you want to identify the <selects> involved
box.onchange();
NOTE There is no need for
javascript: in your event handlers, and it should be removed.