0

I cannot get any of my javascript to work on bootstrap here's the call:

<script src="js/bootstrap.js"></script>
<script src="js/bootstrap.min.js"></script>   
<link rel="stylesheet" href="css/bootstrap.css" />

And this is the thing i'm trying to get to work

<ul class="nav nav-pills">
    <li class="dropdown all-camera-dropdown">
           <a class="dropdown-toggle" data-toggle="dropdown" href="#">
            All Cameras
               <b class="caret"></b>
           </a>
    <ul class="dropdown-menu">
            <li data-filter-camera-type="all"><a data-toggle="tab" href="#">All Cameras</a></li>
            <li data-filter-camera-type="Alpha"><a data-toggle="tab" href="#">Alpha</a></li>
            <li data-filter-camera-type="Zed"><a data-toggle="tab" href="#">Zed</a></li>
            <li data-filter-camera-type="Bravo"><a data-toggle="tab" href="#">Bravo</a></li>

     </ul>
</li></ul>
3
  • 3
    What is it doing and what do you want it to do exactly? Also, why are you loading the bootstrap library twice? You only need to do it once. Either include bootstrap.js or bootstrap.min.js. Commented Oct 6, 2012 at 15:59
  • 1
    It doesn't seems that you have had a link to jquery, bootstrap plugins are build on it, also it's redundant to have minified and the normal version. Remove one of them Commented Oct 6, 2012 at 16:04
  • More than redundant, loading the plugins twice has been known to cause errors. You must load it only once. Check the answers for the primary reason of your problem. Commented Oct 6, 2012 at 17:58

1 Answer 1

2

You need to include the jquery library before bootstraps. It relies on it.

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.