rachelleyen
9/14/2017 - 2:55 AM

jQuery scroll to ID from different page

Load different page and then smooth scroll to ID

$(document).ready(function() {
	if (window.location.hash != null && window.location.hash != '') 
		$('body').animate({
			scrollTop: $(window.location.hash).offset().top
		}, 1000);
});