My modal window is not appearing as a pop-up when clicked on "View Video". Instead its displaying just as any other div element in the same page. Can anyone please help.
<div class="content-intro">
<a href="#myModal" data-toggle="modal">View Video</a>
</div>
<div class="modal" id="myModal" style="display: none" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
My video
</div>
</div>
</div>
</div>
You are missing
data-target="#myModal"
Just make your link like this