Set a combobox value with js

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

    Set a combobox value with js

    How is it possible to change a select box value with Javascript?


  • Janwillem Borleffs

    #2
    Re: Set a combobox value with js


    "John M" <bali1a@freemai l.hu> schreef in bericht
    news:20ykb.2363 2$bU3.302988@ne ws.chello.at...[color=blue]
    > How is it possible to change a select box value with Javascript?
    >
    >[/color]

    Yeah, with:

    document.forms['formNameOrInde x'].elements['selectNameOrEl ementIndex'].optio
    ns[index].value
    = newValue;


    JW



    Comment

    Working...