user3584084
user3584084

Reputation: 1

Bootstrap: close modal and save changes

  <div class="modal-footer">
    <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
    <button type="button" class="btn btn-primary">Save changes</button>
  </div>

Is it possible close modal window and save changes with a single button. I have not found a solution.

Upvotes: 0

Views: 2722

Answers (1)

Leo Bauza
Leo Bauza

Reputation: 275

Add the data-dismiss="modal"attribute to your Save Changes button. Fiddle: https://jsfiddle.net/DTcHh/8698/

Upvotes: 1

Related Questions