![]() |
programmatically select an option in "select" box in html
Hi,
I'm having trouble selecting an option in html, i.e. i change the code, but the change is not reflected in the browser. Example, i have <select> <option>A <option selected>B </selected> if I click A and refresh the page, the select box will still be in A, even though according to the code should be pointed to B. I'm using firefox. Any suggestion? thanks |
Re: programmatically select an option in "select" box in html
rvelosoo wrote:
> I'm having trouble selecting an option in html, i.e. i change the > code, but the change is not reflected in the browser. > Example, i have > <select> > <option>A > <option selected>B > </selected> > if I click A and refresh the page, the select box will still be in A, > even though according to the code should be pointed to B. I'm using > firefox. Any suggestion? thanks <body onLoad="document.forms[0].s.selectedIndex = 1;"> <form method="get" action="#"> <select name="s" size="1"> <option value="A">A</option> <option value="B" selected>B</option> </selected> </form> </body> -- Bart |
| All times are GMT. The time now is 01:04 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.