Can't close bootstrap modal via data-attribute data-background

I want to close my modal click on the background . For this, I want to use the data- data attribute , for example:

<div id="myModal" class="modal fade" role="dialog" data-backdrop="">
    <div class="modal-dialog">
        <div class="modal-content">
            <a class="link">
                <img src="URL" />
            </a>
        </div>
    </div>
</div>

      

Where is the problem?

Thanks for your attention.

+3


source to share


1 answer


Since you have to use data-backdrop="true"

Have a look at this bootply : http://www.bootply.com/kDYLtTapC4



HTML :

<a href="#myModal" role="button" class="btn btn-default" data-toggle="modal">Launch demo modal</a>

<div id="myModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="true">   // <----- HERE
<div class="modal-dialog">
<div class="modal-content">
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">ร—</button>
            <h3 id="myModalLabel">Modal header</h3>
    </div>
    <div class="modal-body">
        <p>One fine bodyโ€ฆ</p>
    </div>
    <div class="modal-footer">
        <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
        <button class="btn btn-primary">Save changes</button>
    </div>
</div>
</div>
</div>

      

+3


source







All Articles