I would like to fadeOut the #portfolio-wrapper, than load the portfolio2.html with fadeIn(600). The problem is that the load function execute before the fadeOut(600). Please help me! Big thanks :)
$("a").click(function(){
$("#portfolio-wrapper").fadeOut(600).load('portfolio2.html').fadeIn(600);
});