$(document).ready(function () { //nav mobile $('.submenu-btn').on('change', function () { console.log('change'); $('.submenu-btn').prop('checked', false); $(this).prop('checked', true) }); // $(document).on($.modal.BEFORE_OPEN, function(e, modal) { // $('html, body').animate({ // scrollTop: 0 // Use element id to get element's location. // }, 500); // }) document.querySelector("body").scrollIntoView(); $(document).on($.modal.OPEN, function(e, modal) { $('body').scrollTop(0) document.querySelector("body").scrollIntoView(); }) });