Advertisement
axon

Untitled

Jul 8th, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.69 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  4.     <script type="text/javascript">
  5.         $(document).ready(function() {
  6.             $('#select').children().each(function(index) {
  7.                 $(this).click(function() {
  8.                     window.location.search = '?type=' + $(this).val();
  9.                 });
  10.             });
  11.         });        
  12.     </script>
  13.     </head>
  14.     <body>
  15.         <select id="select">
  16.             <option value="text">text</option>
  17.             <option value="feedback">feedback</option>
  18.             <option value="press-release">press-release</option>
  19.         </select>
  20.     </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement