skip to Main Content

When I include my script like this – loading bootstrap.min.js from a local file on disk, it does not execute my browser code.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js" </script>

I know it can find the file, because if I introduce a misspelling in the file name, Chrome complains, but otherwise not. Same behavior from IE-Edge by the way.

However if I include from the cdn network like this:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

Everything works fine. The setup was suggested in a Coursera course on bootstrap and seems to work for most people, but not all. I am kind of puzzled. Is there a browser/internet setting that is preventing me from executing bootstrap from the disk or something that I am missing?

2

Answers


  1. You probably have not closed your code

    Here

    <script src="js/bootstrap.min.js" </body>
    

    should be

    <script src="js/bootstrap.min.js"></script>
    
    Login or Signup to reply.
  2. just change

    <script src="js/bootstrap.min.js" </body>
    

    To

    <script src="js/bootstrap.min.js"></script> 
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search