Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3.         var slides = $('.slide');
  4.     var display = $("#display");
  5.        
  6.         slides.hide();
  7.         slides.first().show();
  8.    
  9.     $('#navigation li a').click( function(){
  10.        $('.slide').first().hide();
  11.        var toLoad = $($(this).attr("href"));
  12.            display.prepend(toLoad);
  13.            $('.slide').first().fadeIn('fast');
  14.        return false;
  15.    });
  16. });
  17. </script>