I'm facing an issue that needs to be resolved.
Please check out the link provided below.
This is the HTML code snippet....
<div class="wrap">
<a href="#modal-one" class="btn btn-big">Modal!</a>
</div>
<!-- Modal -->
<div class="modal" id="modal-one" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-header">
<h2>Modal in CSS?</h2>
<a href="#" class="btn-close" aria-hidden="true">×</a>
</div>
<div class="modal-body">
<p>One modal example here! :D</p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Nice!</a>
</div>
</div>
</div>
<!-- /Modal -->
Currently, upon clicking the Modal button, a pop-up dialog appears with animation. However, I am looking to achieve this using jQuery as I have limited knowledge of CSS. Would appreciate any help on this!
The CSS can be found in the provided link