Bootstrap drop-down menus and tabbable tabs on Docpad

℡╲_俬逩灬. 提交于 2019-12-02 11:52:30

for Boostrap, to run drop-down menu i know its need this code in a page to work:

 $('.dropdown-toggle').dropdown();

this call a bootstrap plugin.

the sequence call for js files is:

  1. <script src="jquery.js"></script>
  2. <script src="bootstrap.js"></script>
  3. <script type="text/javascript"> $(document).ready(function () { $('.dropdown-toggle').dropdown(); }); </script>

Its important to call jquery and bootstrap js before others js codes

For tabs i dont know because i didnt use until now.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!