Skip to content

Instantly share code, notes, and snippets.

@Sysetup
Created July 19, 2016 23:24
Show Gist options
  • Save Sysetup/0d4c7db49ef5b99e72efca97fa131eb6 to your computer and use it in GitHub Desktop.
Save Sysetup/0d4c7db49ef5b99e72efca97fa131eb6 to your computer and use it in GitHub Desktop.
.load() fade in/out JQuery
//http://stackoverflow.com/questions/9337220/jquery-load-with-fadein-effect
$('#primary').fadeOut('slow', function(){
$('#primary').load(link+' #content', function(){
$('#primary').fadeIn('slow');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment