• Lucid Dreaming - Dream Views




    Results 1 to 6 of 6

    Threaded View

    1. #2
      FBI agent Ynot's Avatar
      Join Date
      Oct 2005
      Gender
      Location
      Southend, Essex
      Posts
      4,337
      Likes
      14
      Code:
      <html>
      <head>
      <script type="text/javascript">
      function blah()
      {
      if (document.getElementById('opt_one').selected)
      { alert("Hello");
      }
      if (document.getElementById('opt_two').selected)
      { alert("Goodbye");
      }
      }
      </script>
      </head>
      <body>
      <form name="form" id="form" onsubmit="blah(); return false">
      <select name="select">
      <option name="one" id="opt_one" value="one">One</option>
      <option name="two" id="opt_two" value="two">Two</option>
      <option name="three" id="opt_three" value="three">Three</option>
      </select>
      <input type="submit" name="click" value="Go!"></input>
      </form>
      </body>
      </html>
      Last edited by Ynot; 06-17-2008 at 07:01 PM.

    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
    •