Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Determine which button opened a Bootstrap 3 modal

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">&times;</span></button>
        <h4 class="modal-title">Modal title</h4>
      </div>
      <div class="modal-body">
        <p>One fine body&hellip;</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.

like image 284
narayan Avatar asked Feb 05 '15 02:02

narayan


1 Answers

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.

like image 176
Josh Crozier Avatar answered Sep 30 '22 17:09

Josh Crozier