View Single Post
Old 02-13-2013, 10:20 PM   PM User | #9
sgadow
New Coder

 
Join Date: Mar 2012
Posts: 10
Thanks: 3
Thanked 0 Times in 0 Posts
sgadow is an unknown quantity at this point
Code:
var selects = document.getElementsByTagName( 'select' );

for( var i = 0, box; ( box = selects[ i ] ); i++ )
  if( box.name.indexOf( 'ereg|' ) == 0 )
    box.onchange();
That makes sense but I am unsure as to where exactly or how to modify my code to get it to work. I am rather new to this sorry
sgadow is offline   Reply With Quote