I used multiple bootstrap modal popup in my website. I want to add some class in following div name test when popup is opened. I found the class "modal-body" is added to the body tag.
Please see my above picture.
But I had nested modal popup. Please see my below fiddle location.
http://jsfiddle.net/tv8jd8py/1/
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
If I click the "Another Modal" button, the second popup is opened. Then I close the popup the "modal-body" class will be removed. Why?? Still My firt popup is visible. Please see my below image.
I want "modal-body" class will bestay, when I close the last modal popup. Please guide me. Or suggest alternate way. Thanks