Tab order on Form

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

    Tab order on Form

    If I create a Web page in php, which includes an HTML Form, is there
    some way I can locate the cursor as active in the first 'Input' field on
    the form?
  • ZeldorBlat

    #2
    Re: Tab order on Form

    On Feb 16, 2:23 pm, Alan M Dunsmuir <a...@moonrake. demon.co.ukwrot e:
    If I create a Web page in php, which includes an HTML Form, is there
    some way I can locate the cursor as active in the first 'Input' field on
    the form?
    Yes -- but not with PHP itself. Ask in a Javascript newsgroup as
    they'll be able to better help you.

    Comment

    • petersprc

      #3
      Re: Tab order on Form

      On Feb 16, 2:23 pm, Alan M Dunsmuir <a...@moonrake. demon.co.ukwrot e:
      If I create a Web page in php, which includes an HTML Form, is there
      some way I can locate the cursor as active in the first 'Input' field on
      the form?
      The onFocus and onBlur event handlers are triggered when an object
      gets / loses focus.

      Comment

      Working...