I am using the following script for smooth scroll effect for anchor tags:
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
After using this script the Left and Right controls for Bootstrap Carousel stopped working.
<a class="left carousel-control" href="#home-carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#home-carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
How do I fix this?
Then you just have to edit you code for the smooth scroll like this, depending if you have the ID
header-menu
or classheader-menu
Change
to (if you use the ID header-menu)
or (if you use the class header-menu):
This way you will only focus the smooth scroll effect on the menu href elements, and the script will not "collide" with you bootstrap hrefs.