How to stop dynamically changing body filling in html web page
In my html page, I have one link that every time I click I get a modal popup.
If I close this modal, the padding of the body increases, it increases continuously. I don't know how to stop him.
As before I open the body tag modal popup will be like this:
<body class="sidebar-mini skin-purple modal-open" >
after i clicked and close the popup it becomes like
<body class="sidebar-mini skin-purple modal-open" style="padding-right:19px;" >
and it keeps growing every time we open the modal popup and close it.
How do I stop him?
+3
source to share