Results 1 to 3 of 3

Thread: Next Page

  1. #1
    Join Date
    Oct 2005
    Location
    Canton IL
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Next Page

    Help! I'm fairly new to this and am trying to creating a training course that when the user hits the "enter" key they will be directed to the next training page. Thanks so much!!!

    Lynn

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    If you have no other forms on your page, this is a neat way to do it:

    Add to your body tag this onload event:
    HTML Code:
    <body onload="document.forms[0][0].focus()">
    Then at the bottom of the page use this form:
    HTML Code:
    <form action="blank.htm" onsubmit="location='blank.htm';return false">
    <input type="submit" value="Next">
    </form>
    just before the closing </body> tag. Substitute the name of the page you want this to switch to for both occurrences of blank.htm.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    But if the user clicks something, focus will be lost. Better to use an event.
    Code:
    <script type="text/javascript">
    var page = "page2.htm" // Page to go to
    var key = 13; // Key to check for.  13 == enter.
    
    var ns6 = document.getElementById && !document.all ? 1 : 0;
    
    function goNext(ev) {
      if(ns6) if(ev.which === key) window.location.href = page;
      else if(ev.keyCode === key) window.location.href = page;
    }
    </script>
    </head>
    <body onkeypress="goNext(event);">
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

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