Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Close button on modal not working...what am i doing wrong?

I've made a modal that makes an image pop up when it's clicked but I can't get the close button to work for some reason. Can someone check my code and see where I went wrong? Or give me some suggestions...thank you!

<div id = "myModal" class = "modal">
        <div class = "modal-content">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
            <!-- Modal Content (The Image) -->
            <img class="modal-content" id="mimg">

            <!-- Modal Caption (Image Text) -->
            <div id="caption"></div>
        </div>
    </div>
    <img id="myImg" src="http://i0.kym-cdn.com/photos/images/newsfeed/001/023/007/f29.png" alt="Trolltunga, Norway" width="300" height="200">
like image 368
Breevie Avatar asked Sep 19 '25 19:09

Breevie


1 Answers

Simple example, if you use bootstrap, make sure to do it the bootstrap way.

Also, make sure the references are correct.

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

#myImg {
  width: 100%;
  height: auto;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<button type="button" class="btn" data-toggle="modal" data-target="#myModal">Open Modal</button>

<div id="myModal" class="modal">
  <div class="modal-dialog">
    <div class="modal-content">
      <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
      <!-- Modal Content (The Image) -->
      <img id="myImg" src="https://pbs.twimg.com/media/BU27_rrCYAAckFP.jpg" alt="Trolltunga, Norway">
      <!-- Modal Caption (Image Text) -->
      <div id="caption">Modal Caption (Image Text)</div>
    </div>
  </div>
</div>
like image 153
Dalin Huang Avatar answered Sep 22 '25 18:09

Dalin Huang