I have the following Bootstrap buttons:
<button type="button" class="btn btn-primary btn-lg" data-button="create" data-toggle="modal" data-target="#modal">Create</button>
<button type="button" class="btn btn-primary btn-lg" data-button="delete" data-toggle="modal" data-target="#modal">Delete</button>
and this is the modal:
<div class="modal fade" id="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" data-dismiss="modal">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
How can I figure out which button triggered the modal to open?
Specifically, I need the data-button
attribute.
You can listen to either of the show.bs.modal
/shown.bs.modal
events.
Within the function, the event has a relatedTarget
property attached to it. You can use this to determine which button triggered the modal to open.
Bootstrap 3 - Modal events:
This event fires immediately when the show instance method is called. If caused by a click, the clicked element is available as the
relatedTarget
property of the event.
$('.modal').on('show.bs.modal', function (e) {
var $trigger = $(e.relatedTarget);
});
Example Here
.. and if you want to access the data-button
attribute, use:
$(e.relatedTarget).data('button');
Conversely, if you want to determine which button caused the modal to close, see this answer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With