Can I use an image to trigger a modal window in Bootstrap?

image, modal-window, twitter-bootstrap

Solution

Yes you just wrap the tag around an image.

<a href="#myModal" role="button" data-toggle="modal">

<img src="http://placehold.it/150x150"></a>

Here is a live example:

Bootstrap modal trigger by an image

Problem

Simple question really. Instead of having a button trigger a modal window, I need to use an image. I can't figure out the code to do it. Any tips?

Original source