examples.js 154 B

12345
  1. $(document).ready(function(){
  2. $("#demosMenu").change(function(){
  3. window.location.href = $(this).find("option:selected").attr("id") + '.html';
  4. });
  5. });