Smooth Scrolling Issue
I am using following js code for the smooth scrolling on the page. The issue is I am not able to use the navigation of mycarousel after using following JS . Is there anyway to fix
Solution 1:
Replace this
$('a[href*=#]:not([href=#])').click(function() {
with:
$('a[href*=#]:not([href=#media])').click(function () {
Happy coding!
Solution 2:
This worked for me. I replaced
$('a[href*=#]:not([href=#])').click(function() {
with
$('a[href*=#]:not([href=#carousel-example-generic])').click(function() {
where #carousel-example-generic can be the name of the carousel that the controls are pointing to
Post a Comment for "Smooth Scrolling Issue"