Web/jQuery
jQuery Mobile 화면 최상단으로 Scroll 이동하기
saltdoll
2018. 6. 2. 23:01
반응형
jQuery Mobile 화면 최상단으로 Scroll 이동하기
//delegate binding to only links that have the `.top` class
$(document).delegate('a.top', 'click', function () {
$('html, body').stop().animate({ scrollTop : 0 }, 500);
return false;
});
또는 $.mobile.silentScroll()를 사용하면 됩니다.
jQuery Mobile has it's own $.mobile.silentScroll()
function that scrolls to a particular Y position without triggering scroll event listeners.
(http://jquerymobile.com/demos/1.1.0-rc.1/docs/api/methods.html)
참고: https://stackoverflow.com/questions/9783442/back-to-top-with-jquery-mobile
반응형