ACC SHELL

Path : /srv/www/vhosts/profias/js/
File Upload :
Current File : /srv/www/vhosts/profias/js/main.js

$(function() {
	$(window).scroll(function() {
		if($(this).scrollTop() != 0) {
			$("#arrow-top").fadeIn();	
		} else {
			$("#arrow-top").fadeOut();
		}
	});
 
	$("#arrow-top").click(function() {
		$("body,html").animate({scrollTop:0},800);
	});	
});

ACC SHELL 2018