| | |
reset drop down
Please support our HTML and CSS advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Jul 2006
Posts: 3
Reputation:
Solved Threads: 0
Hi there,
i have two drop down menus.
what i want to do is when the user chooses an option from the first box, the second box returns to the default (selected) option on change.
Any thoughts are very welcome.
Thanks a lot.
http://www.webdeveloper.com/forum/im...ttons/edit.gif
i have two drop down menus.
what i want to do is when the user chooses an option from the first box, the second box returns to the default (selected) option on change.
Any thoughts are very welcome.
Thanks a lot.
http://www.webdeveloper.com/forum/im...ttons/edit.gif
•
•
Join Date: Apr 2006
Posts: 28
Reputation:
Solved Threads: 2
check out this ways:
call a function onchange of the first combo
where you will have to set the value of the second combo to the default value.
Say if the default value of the second combo is "default_value"
and the name of the function called on change of the first combo is fnOnChangeFirstCombo and the name of the second combo is SecCombo, then use the following code:
[code]
function fnOnChangeFirstCombo()
{
document.frmName.SecCombo.value="default_value";
}
[code]
call a function onchange of the first combo
where you will have to set the value of the second combo to the default value.
Say if the default value of the second combo is "default_value"
and the name of the function called on change of the first combo is fnOnChangeFirstCombo and the name of the second combo is SecCombo, then use the following code:
[code]
function fnOnChangeFirstCombo()
{
document.frmName.SecCombo.value="default_value";
}
[code]
HTML and CSS Syntax (Toggle Plain Text)
document.frmName.SecCombo.value="default_value";
HTML and CSS Syntax (Toggle Plain Text)
var combo = document.getElementById("combo2");
HTML and CSS Syntax (Toggle Plain Text)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Combo change</title> <script type="text/javascript"> function combo2_OnChange() { var combo = document.getElementById("combo2"); combo.value = "0"; } </script> <style type="text/css"> body { font-family: verdana; } #fieldset1 { padding: 15px; text-align: center; width: 150px; } #combo1 { font-weight: bold; color: red; } #combo2 { color: green; } </style> </head> <body> <fieldset id="fieldset1"> <legend>Choose options</legend> <br /> <select id="combo1" onchange="combo2_OnChange();"> <option selected="selected" value="0">Option 1</option> <option value="1">Option 2</option> </select> <hr /> <select id="combo2"> <option selected="selected" value="0">Default</option> <option value="1">First</option> <option value="2">Second</option> <option value="3">Third</option> </select> </fieldset> </body> </html>
Last edited by hollystyles; Aug 17th, 2006 at 4:36 pm.
![]() |
Similar Threads
- Serial Number in Data Reports (Visual Basic 4 / 5 / 6)
- Msn and Hotmail Problems (Web Browsers)
- Overclocking 2600+.. help? (Motherboards, CPUs and RAM)
- PLEASE HELP: Windows XP Major problem (Windows NT / 2000 / XP)
- Time out web pages w/text or drop boxes (Networking Hardware Configuration)
- reset xp (Web Browsers)
Other Threads in the HTML and CSS Forum
- Previous Thread: CSS For Table
- Next Thread: How to set html page size attributes
| Thread Tools | Search this Thread |
Tag cloud for HTML and CSS
2002 appointments asp background backgroundcolor beta browser bug calendar cart cgi code codeinjection corporateidentity create css deleted design development displayimageinsteadofflash dreamweaver drupal emailmarketing epilepsy explorer firefox flash font fonts form format frontpage google griefers hackers hitcounter hover html ide ie7 ie8 iframe image images internet internetexplorer intranet iphone javascript jpeg layout macbook maps marketshare microsoft missing mozilla multimedia navigationbars news offshoreoutsourcingcompany opacity opera optimization perl pnginie6 positioning problem scroll seo shopping studio swf swf. templates textcolor theme timecolor titletags url urlseparatedwords visual visualization web webdevelopment webform website windows7 wordpress xml xsl






