Hello,
I have to open a modal window, this window contains a text and an accept button, when the user accepts, the modal window must no longer appear.
At the moment I used this code, it works fine, but if I confirm the window opens again.
I used the code on the demo page: modal-onload-cookie.html
<div class="modal-on-load" data-cookies="true" data-target="#myModal1"></div>
<div class="modal1 mfp-hide" id="myModal1">
<div class="block mx-auto" style="background-color: #FFF; max-width: 700px;">
<div class="center" style="padding: 50px;">
<p class="mb-0">Text example... the vision of this website is reserved for operators in the sector...</p>
</div>
<div class="section center m-0" style="padding: 30px;">
<a href="#" class="button" onClick="$.magnificPopup.close();return false;">I confirm</a>
</div>
</div>
</div>Thanks for any help
