'success: function(html) { $("div#augustPrimiumEvent").html(html).promise().done( function() { $('div#augustPrimiumEvent').waitForImages({ finished: function() { if(location.hash.length > 1) { setTimeout(function() { $('body'에 해당되는 글 1건

  1. 2017.08.31 ajax 로딩후 앵커이동, 이미지 불러들이기 완료후 이동

$.ajax({
	url: "/shop/promotion/augustPrimiumEvent?imageFolder=201708",
	dataType: "html",
	data: data,
	success: function(html) {
		$("div#augustPrimiumEvent").html(html).promise().done(
			function() {
				$('div#augustPrimiumEvent').waitForImages({
					finished: function() {
						if(location.hash.length > 1) {
							setTimeout(function() {
								$('body').scrollTo(''+location.hash); }, 500);
							}
					},
					waitForAll:true
				});
			}
		);
	},
	error: function(xhr, status, error) {}
});
Posted by 1bobby :