Guest User

Untitled

a guest
Jan 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.02 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  5. <title>New Page 1</title>
  6. <script type="text/javascript">
  7.  
  8. function NavigateUp(/*As String*/ elementID)
  9. {
  10. var theSelector = document.getElementById(elementID);
  11. var theIndex = theSelector.selectedIndex;
  12. var theUrl = theSelector.options[theIndex].value;
  13.  
  14. window.location.href = theUrl;
  15.  
  16. return true;
  17. }
  18.  
  19. </script>
  20. </head>
  21.  
  22. <body>
  23.  
  24. <h1 style="background-color:red">My First Web Page</h1>
  25.  
  26. <body style="background-color:lightblue">
  27.  
  28. <center>
  29.  
  30. <form>
  31. <select SelectedIndex="0" id="SelectionDropDownList"
  32. onchange="NavigateUp(this.id);">
  33. <option value="#">Select Option</option>
  34. <option value="example1.html">Change Image</option>
  35. <option value="example2.html">Hide Text</option>
  36. <option value="example3.html">On Mouse Over</option>
  37. <option value="example4.html">Onload</option>
  38. <option value="example5.html">Autofill</option>
  39. <option value="example6.html">Mouse Over</option>
  40. </select>
  41.  
  42. </center>
  43.  
  44. </body>
  45. </html>
Add Comment
Please, Sign In to add comment