Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(document).ready (function() {
  3.     $('a.link[name=verhaal]').click( function() {
  4.         if ($('#content').is(':visible')) {
  5.             $('#content').hide('400', function() {
  6.                 $('#content').load('verhaal.php', function () {
  7.                     $('#content').fadeIn('slow', function () {
  8.                         // done
  9.                     });
  10.                 });
  11.             });
  12.         }
  13.     });
  14. });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement