[PHP] Text Box question

2004-04-21 Thread Brent Clark
Hi all
I have a problem where, when I click on a link and when the page is finish
loading
I would like for the cursor to ready in the correct html text box.
I cant seem to find a solution

If anyone could help, that would be most appreciated
Kind Regards
Brent Clark

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Text Box question

2004-04-21 Thread Miguel J. Jiménez
You can use javascript to perform this... Do the following:

   script type=text/javascript
  document.formName.boxName.focus(); // set the focus to the box
   /script
Brent Clark escribió:

Hi all
I have a problem where, when I click on a link and when the page is finish
loading
I would like for the cursor to ready in the correct html text box.
I cant seem to find a solution
If anyone could help, that would be most appreciated
Kind Regards
Brent Clark
 

--
Miguel J. Jiménez
ISOTROL, S.A. (Área de Internet)
Avda. Innovación nº1, 3ª - 41020 Sevilla (ESPAÑA)
[EMAIL PROTECTED]   ---   http://www.isotrol.com
TLFNO. 955036800 ext. 111
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Text Box question

2004-04-21 Thread Brent Clark
You can use javascript to perform this... Do the following:

script type=text/javascript
   document.formName.boxName.focus(); // set the focus to the box
/script

Thank you
Worked like charm

Much appreciated

Kind Regards
Brent Clark

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php