$(document).ready(function(){ $(".to-link-1").click(function(){ $("html,body").stop().animate({scrollTop: $(".section-2").offset().top}, 400); return false; }); $(".to-link-2").click(function(){ $("html,body").stop().animate({scrollTop: $(".section-3").offset().top}, 400); return false; }); var hash = location.hash; if (hash == '#behappy') { $("html,body").stop().animate({scrollTop: $(".section-2").offset().top}, 400); location.hash = ''; } var tm = null; $(".btn-entrance-social").click(function(){ if ($("a.soc-net:eq(0)").hasClass("shake-error")) { clearTimeout(tm); $("a.soc-net").removeClass("shake-error"); } $("a.soc-net").addClass("shake-error"); tm = setTimeout(function(){ $("a.soc-net").removeClass("shake-error"); }, 1000); return false; }); $(".soc-net").click(function(){ if ($(this).hasClass('disabled')) return false; $(".preloader").addClass("active"); $(".soc-net").addClass('disabled'); return true; }); });