Why last href is not working when there is some link between href scroll

Why last href is not working when there is some link between href scroll

hello guys, i was exciting in this forum cause some of you guys make me aware about jquery,
well to the point now days i'm creating one page with jquery and bootsrap, many times change plugin then i found nice plugin here  https://github.com/rabmyself/smint yes i fall in love that plugin but now i have problem about it when there is link some hre not workind to scroll 
  1.  <ul class="nav navbar-nav" id="navlist">
  2. <li><a href="#fasilitas">Fasilitas</a></li>
  3. <li><a href="#testtimoni">Testimoni</a></li>
  4. <li><a href="#praktek">Praktek</a></li> 
  5.  <li><a href="<?php echo site_url('tanya') ?>">Tanya Jawab</a></li> 
  6. <li><a href="<?php echo site_url('update') ?>">Update</a></li>
  7. <!---Kontak not working when there is some link above-->
  8. <li><a href="#contact">Kontak</a></li>  
  9. </ul>

but when i change code to be like this totally working scroll page
  1.  <ul class="nav navbar-nav" id="navlist">
  2. <li><a href="#fasilitas">Fasilitas</a></li>
  3. <li><a href="#testtimoni">Testimoni</a></li>
  4. <li><a href="#praktek">Praktek</a></li> 
  5.          <li><a href="#contact">Kontak</a></li>
  6. <li><a href="<?php echo site_url('tanya') ?>">Tanya Jawab</a></li> 
  7. <li><a href="<?php echo site_url('update') ?>">Update</a></li>
  8. </ul>
and also i make issue there but still not answer, The point is i want make my first menu is working not like second above this, here is my issue  https://github.com/rabmyself/smint/issues/20

Thanks Forum Jquery

Freddy Sidauruk