I am testing on this website some modal windows and as you can see now the modals are toggled on click / touch on the play button.
My question is: is possible to make the whole columns clickable and make the modals open?
I tried to define also a data-toggle for the whole div with the data-target without any results.
This is the HTML code:
<!-- Button trigger modal -->
<i class="fa fa-play btn btn-lg" aria-hidden="true" type="button" data-toggle="modal" data-target="#myModal"></i>
</div>
<!-- Modal -->
<div class="modal fade modal-video" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<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" id="myModalLabel">Title 1</h4>
</div>
<div class="modal-body">
<video controls="" width="100%" id="video">
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" type="video/mp4">
</video>
<div class="modal-text">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr.</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn button-eh-magenta">Go to Shop</button>
<a href=""><button type="button" class="btn button-eh-magenta">Share</button></a>
</div>
</div>