1
I have a button that when clicked opens a modal of bootstrap. However, when clicking this button, the modal is not opening. It follows the structure of the code:
<html>
    <head>        
        <script src="assets/bootstrap-3.3.7/js/bootstrap.min.js" type="text/javascript"></script>
    </head>
    <body>
        <button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#MyModal">Open Modal</button>
        <div id="MyModal" class="modal fade" role="dialog">
            <div class="modal-dialog">
              <!-- Modal content-->
              <div class="modal-content">
                <div class="modal-header">
                  <button type="button" class="close" data-dismiss="modal">×</button>
                  <h4 class="modal-title">Modal Header</h4>
                </div>
                <div class="modal-body">
                  <p>Some text in the modal.</p>
                </div>
                <div class="modal-footer">
                  <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                </div>
              </div>
            </div>
      </div>
    </body>
</html>
The bootstrap version I imported into my project is the latest. What
What is shown on the console (F12)? You need to enter Jquery and Bootstrap javascript at the bottom of the page!
– Inkeliz
Nothing appears. And there is no error in the page load as well
– Raphael Prado de Oliveira
Is with the
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js">at the bottom of the page, just like Jquery? If you are using only.cssas it is there, it will not work.– Inkeliz
I added the <script src="Assets/jquery/jquery-3.1.1.min. js" type="text/javascript"></script> that was missing and also not. I didn’t add them at the bottom of the page. I added them to the <head>
– Raphael Prado de Oliveira
@Raphaelpradodeoliveira has order to add, first jquery, then bootstrap.js. Suffice follow the documentation http://getbootstrap.com/getting-started/#template
– Guilherme Nascimento