Smooth Scrolling Bootstrap 3
I am having some issue trying to have a smooth scroll in my page, basically I have anchor tags around a page like this: Module Description<
Solution 1:
$('a[href*=#]:not([href=#])')
will be very generic will also change the target anchors for by example the modal. Try to make it less generic:
<ulid="insidepagenav"><li><ahref="#description">Module Description</a></li>
$('ul#insidepagenav > li > a[href*=#]:not([href=#])')
Post a Comment for "Smooth Scrolling Bootstrap 3"