I need a cross-browser solution for scrolling to an element on a page. This code works perfectly on Chrome, but not Safari, nor Safari on mobile. It scrolls to the top of the page, not to the div id:
$(".link").click(function() {
$("html,body").animate({ scrollTop: $("#div_id").offset().top - 260 }, 1000);
});