I have a popup-modal from the ‘Furniture Website’ that I want to be able to open when you click a button instead of auto-popup.
The modal wrapper is -
Does anyone know how to target this within a Hyperlink?
I have a popup-modal from the ‘Furniture Website’ that I want to be able to open when you click a button instead of auto-popup.
The modal wrapper is -
Does anyone know how to target this within a Hyperlink?
You can use this structure:
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
The “Furniture template” is based on the “Bootstrap framework”, you can also use this documentation
Fantastic @Michael! This worked perfectly. Appreciate your prompt assistance.