how 2 focus on combo box by javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • senosen
    New Member
    • Jan 2008
    • 1

    how 2 focus on combo box by javascript

    Plz tell me how to focus on the combo box ( not to particular item) by javascript

    the code

    document.teache r_inp.select_ho meblk.focus(); --- gives error as object doesn't support this property or method
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5390

    #2
    hi ...

    please post more of the related code html/javascript i just tested in IE 6 and FF and it worked:

    [HTML]<html>
    <body onload="documen t.getElementsBy TagName('select ')[0].focus();">
    <input type="text">
    <select>
    <option>test</test>
    </select>
    </body>
    </html>
    [/HTML]
    kind regards

    Comment

    Working...