programmatically select an option in "select" box in html

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rvelosoo

    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
  • Bart Van der Donck

    #2
    Re: programmaticall y select an option in &quot;select&qu ot; 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="documen t.forms[0].s.selectedInde x = 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

    Comment

    Working...