Search code examples
javascripttextinput

can we set tabindex for textbox and other controls in javascript


can we set tabindex for input and other html controls using javascript. I've seen this in .net. can we do the same in javascript?

Thanks


Solution

  • You can set tabindex for input all html-elements, in javascript:

    [someElement].tabIndex = [number]