Force all select boxes on page to default?

E

Erich93063

I have a form with about 40 select boxes that are pre selected with
selections based on some passed data. What is a quick and easy way to
have a link on the page where when I click on it, it forces ALL of the
select boxes back to their default state selecting the first option in
the list which has a value of "" and the display value is "SELECT". I
basically want to reset them all.

??

THANKS
 
E

Erich93063

Erich93063 said:
I have a form with about 40 select boxes that are pre selected with
selections based on some passed data. What is a quick and easy way to
have a link on the page where when I click on it, it forces ALL of the
select boxes back to their default state selecting the first option in
the list which has a value of "" and the display value is "SELECT". I
basically want to reset them all.

s=document.getElementsByTagName("select");ss=s.length;
while(ss--)s[ss].options[0].selected=true;
Mick

AWESOME! Worked perfectly. Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,143
Latest member
DewittMill
Top