Select Page
Poker Forum
Over 1,292,000 Posts!
Poker ForumFTR Feedback and Announcements

Simple website suggestion.

Results 1 to 5 of 5

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Simple website suggestion.

    On the forum login page, make the cursor focus goto the username textbox when the page loads by default.
    That way everyone can just start typing their Username [tab] Password.



    --neo
  2. #2
    Xianti's Avatar
    Join Date
    Dec 2003
    Posts
    9,246
    Location
    facebook.com/mediacookery
    Hmm... can someone tell me what I need to do in the code to do that?
  3. #3
    Quote Originally Posted by Xianti
    Hmm... can someone tell me what I need to do in the code to do that?
    I haven't implemented any of these (I haven't coded html in a while either) so take it for what it's worth:

    http://www.google.com/search?q=html+...US:eek:fficial
  4. #4
    First you need to make the form on that page have a name to be able to talk to it.

    I just tested it using the page source so just add this to source.

    Find this line:
    Code:
    <form action="login.php" method="post" target="_top">
    and change it to also contain a form name like this:
    Code:
    <form name="login" action="login.php" method="post" target="_top">
    Next find this line:
    Code:
    <body bgcolor="#E6D397" text="#000000" link="#86430E" vlink="#86430E" leftmargin="0" topmargin="0" >
    and change it to the following to make the textfield get the cursor focus.
    Code:
    <body bgcolor="#E6D397" text="#000000" link="#86430E" vlink="#86430E" leftmargin="0" topmargin="0" OnLoad="document.login.username.focus();">
    Thats it, you're done!

    --neo
  5. #5
    stay logged in. phpbb has one of the most durable cookies out there. i haven't logged in for months.
    In answer to your question... it depends...
    alias2211.com poker

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •