Need to check a few anchors and perform actions, how to do it?
My code does not work for some reason:
if (window.location.hash == '#dynamic') && (window.location.hash == '#testing') { $('html, body').animate({ scrollTop: $('#tabs').offset().top }, 1000); }
&&is a logical "AND", and a logical "OR" is||- Grundy