Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  <script src="http://code.jquery.com/jquery-latest.js"></script>
  2.   <script type = "text/javascript">
  3.  
  4.   $(document).ready(function() {
  5.       $('#sort_list').bind('change', function () {
  6.           var url = $(this).val();
  7.           if (url != '') {
  8.               window.location = url;
  9.               $('#sort_list').find("option[value='"+url+"']").attr("selected", "selected");
  10.           }
  11.           return false;
  12.       });
  13.   });
  14.  
  15.   </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement