I have a div
with an <a href>
inside it. When the div is clicked I want to show a popup but when the anchor is clicked, I want to show a different modal.
<div data-toggle="modal" data-target="#firstmodal">
<div>
other stuff
</div>
<a href="" class="anch" data-toggle="modal" data-target="#other">
<i class="fa fa-pencil"></i>
</a>
</div>
I tried to give position:absolute; z-index:100
to the anchor tag, but it did not work. Clicking on it still opens BOTH the modals
.anch{
position:absolute:
z-index:100;
}