Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('#select').children().each(function(index) {
- $(this).click(function() {
- window.location.search = '?type=' + $(this).val();
- });
- });
- });
- </script>
- </head>
- <body>
- <select id="select">
- <option value="text">text</option>
- <option value="feedback">feedback</option>
- <option value="press-release">press-release</option>
- </select>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement