robuh
robuh

Reputation: 61

Bootstrap modal doesn't displays

The demo is here: http://obuh.by/test/lime/

The problem is when I try to display the modal on button «Показать», it appears and disappears immediately.

Upvotes: 1

Views: 99

Answers (1)

dfsq
dfsq

Reputation: 193301

Change the type of button from submit to button, right now you submit the form and page reloads:

<button data-toggle="modal" data-target="#requestModal" type="button" class="btn btn-lg btn-block btn-main btn-warning">Показать</button>

Upvotes: 2

Related Questions