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

user2172235 picture user2172235 · Mar 15, 2013 · Viewed 8.4k times · Source

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?

Answer

anataliocs picture anataliocs · Mar 15, 2013

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