i want to ask how to open multiple modal bootstrap with different id
i have modal code like this :
<a href="../popup/first.html" data-target="#theModal" data-toggle="modal">
<div class="col span_1_of_3">
<center>
<span><h3>Voucher</h3></span>
<img src="../imgs/myimg1.png" class="imgs">
</center>
</div>
</a>
<a href="../popup/two.html" data-target="#theModal" data-toggle="modal">
<div class="col span_1_of_3">
<center>
<span><h3>Voucher</h3></span>
<img src="../imgs/myimg2.png" class="imgs">
</center>
</div>
</a>
and this code for show the modal :
<div class="modal fade" id="theModal" style="z-index:9999999;">
<div class="modal-dialog">
<div class="modal-content">
</div>
</div>
</div>
if i use code above the modal only show one (1) modal can't show two modal or multiple modal with different id, how to show multiple modal with my code sir?
i don't use javascript code only code above, if use javascript code how to show different id sir?
thanks before