Bootstrap drop-down menus and tabbable tabs on Docpad -
i've created docpad site using twitter bootstrap skeleton. cannot either bootstrap's tabbable tabs or drop-down menus work. render, not function. research on stackoverflow appears additional jquery needs included these bootstrap functions. i've tried add in docpad have been unsuccessful. has gotten these bootstrap functions work in docpad?
for boostrap, run drop-down menu know need code in page work:
$('.dropdown-toggle').dropdown(); this call bootstrap plugin.
the sequence call js files is:
<script src="jquery.js"></script><script src="bootstrap.js"></script><script type="text/javascript"> $(document).ready(function () { $('.dropdown-toggle').dropdown(); }); </script>
its important call jquery , bootstrap js before others js codes
for tabs dont know because didnt use until now.
Comments
Post a Comment