Intro: This html page has 3 sections. Bootstrap Tabs as images(Top) when clicked should scroll to the tabbed content. Within each tabs tabbed content you have a (middle) section with price ranges which will filter the product blocks below (Bottom).
Issue #1 When setting anchor tags, clicking the tab it should scroll down to the tabbed content. Problem: When clicking on tabs the anchor tag scroll only works on the first tab.
Issue #2 When Double clicking the Tabs the tabbed content disappears. Bug?
for Issue #2 : it's because
display: none
of second and third tabs! you can create a div in top of tabs withdisplay: block
and set that for target of scroll after click the tabs.