5 декабря 2013
Нет комментариев
$(document).ready(function() { $("body").css("display","none"); $("body").fadeIn(100); $("a").click(function(event){ event.preventDefault(); linkLocation=this.href; $("body").fadeOut(100,redirectPage); }); function redirectPage() { window.location=linkLocation; } });