I have a function that scrolls down the page when you click on a button:
$(".topBar-Title").click(function () { $("html, body").animate({ scrollTop: $("#firstDiv").offset().top }, 1000); });
When I add ss-container to the body tag these functions break.
Does anyone have any idea why ?
I have a function that scrolls down the page when you click on a button:
$(".topBar-Title").click(function () { $("html, body").animate({ scrollTop: $("#firstDiv").offset().top }, 1000); });When I add ss-container to the body tag these functions break.
Does anyone have any idea why ?