Recently, I've been experimenting with Modals on my website. However, I've encountered a small issue - when I try to add multiple modals, they all seem to be connected in some way. This means that I can't have different content in each modal, as whatever is in the first modal's content ends up appearing in all of the others, overriding any other information I try to input. I'd really appreciate it if someone could help me identify what in my code is causing this problem!
<button class="glyphicon glyphicon-folder-open" data-toggle="modal" data-target="#myModal">
</button>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">MIDDLE TIER</h4>
</div>
<div class="modal-body">
<div class="bs-example">
<table class="table">
<thead>
<tr>
<th>RUN JOB</th>
<th>ACTION</th>
<th>TARGET</th>
<th>MODEL</th>
<th>REPORT KEY</th>
<th>REPORT NAME</th>
</tr>
</thead>
<tbody>
<tr>
<td>GL LOAD</td>
<td>PROFILE/IMPORT</td>
<td>CR Staging (For All Funds)</td>
<td>Not Indicated- To Be Developed</td>
<th>N/A</th>
<th>N/A</th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>