입력 상자를 클릭 할 때마다 페이지를 스크롤하는 학교용 웹 사이트를 사용해야합니다. JS가 페이지를 스크롤하지 못하게하는 방법이 있습니까?
스크롤을 수행하는 JS 섹션을 찾았습니다.
// Automatically scroll to inputs when they gain focus. Do not do this for Partner Chat, where there is only one input.
$('#activity_shell').find('input').each(function(){
if ($(this).attr('type') == 'text') {
$(this).focus(function(){ $('html, body').animate({scrollTop: ($(this).offset().top) - 200}, 200); });
}
});