// jquery $('a').on('click', function (e) { e.preventDefault(); let link = $(this).attr('href'); if (link.includes('#') !== false) { window.location.hash = this.hash.substr(1); } });