Your IP : 216.73.216.175


Current Path : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/js/ajax/1/public/js/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/js/ajax/1/public/js/app.js

var a;
	$('a').click(function (e) {
		e.preventDefault();
		var itemHref = $(this).attr('href');
		$('body').fadeOut(300);

		setTimeout(function () {
			$('body').html('<div class="loader-bg"><div class="loader-1 loader-element"><div class="loader-2 loader-element"><div class="loader-3 loader-element"></div></div></div></div>');
			$('body').fadeIn(300);
		}, 400);
		setTimeout(function () {
			$('body').fadeOut(200);
			setTimeout(function () {
				$.ajax({
						url: itemHref,
						method: 'GET',
						dataType: 'html'
					})
					.done(function (res) {
						res = res.replace('<html>','');
						res = res.replace('</html>','');
						$(document)[0].documentElement.innerHTML = res;
						$('body').fadeIn(300);
						window.history.pushState({
							"html": res.html,
							"pageTitle": res.pageTitle
						}, "", window.location.origin + '/' + itemHref);
					});
			}, 300);
		}, 2500);
	});