Мне нужно использовать веб-сайт для школы, который прокручивает страницу всякий раз, когда вы нажимаете на поле ввода. Есть ли способ отключить 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); });
}
});