Guest User

Untitled

a guest
May 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <script>
  2. function getURL(){
  3. url="action.html";
  4. location.href = url + "?cbo="+document.getElementById("cbo").value;
  5. }
  6. </script>
  7.  
  8. <html>
  9. <select id="cbo">
  10. <option value="a">A</option>
  11. <option value="b">B</option>
  12. </select>
  13.  
  14. <a href="javascript:getURL();">Link</a>
  15. </html>
Add Comment
Please, Sign In to add comment