jquery - SmoothScroll not working with Table nav -
i have being trying anchor points smoothly scroll isn't working. have used script smoothscroll.js, failing work on site? have tried using many other script action work nothing working. ideas on getting smoothscroll work?
thanks
<head> <body> <main> <div class="main"> <div class="p1" id="p1"> <div id="p1a"> <a name="p1a"></a> </div> <div id="p1heading" <h1>uponauto</h1> </div> </div> <div class="p2" id="p2"> <div id="p2a"> <a name="p2a"></a> </div> <div id="p2holding"></div> </div> <div class="p3" id="p3"> <div id="p3a"> <a name="p3a"></a> </div> </div> <div class="p4" id="p4"> <div id="p4a"> <a name="p4a"></a> </div> <div id="p4holding"></div> </div> <div class="p5" id="p5"> <div id="p5a"> <a name="p5a"></a> </div> </div> </main> <nav id="nav"> <div class="main"> <div align="center"> <table width="100" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="59"> <li><a href="#p1a"><i class="fa fa-university fa-lg "></i></li></td> </tr> <tr> <td height="59"><li><a href="#p2a"><i class="fa fa-camera-retro fa-lg"></i></li></td> </tr> <tr> <td height="59"> <li><a href="#p3a"><i class="fa fa-picture-o fa-lg"></i></li></td> </tr> <tr> <td height="59"><li><a href="#p4a"><i class="fa fa-comments fa-lg"></i></li></td> </tr> <tr> <td height="59"><li><a href="#p5a"><i class="fa fa-tachometer fa-lg"></i></li></td> </tr> </table> </div> </nav>
i think plugin work need data-scroll
in links.
<a data-scroll href="#place">place</a>
Comments
Post a Comment