is it possible to open a lightbox window which contains HTML content rather than just an image like in the demos?
The example listed:
<a href="img/image-1.jpg" data-lightbox="image-1" data-title="My caption">Image #1</a>
Will open the image image-1.jpg
in a new lightbox window.
Is there a way using this plugin to do something like this:
<a href="#mycontent" data-lightbox="mycontent">View content</a>
<div id="mycontent">I am some content</div>
And then have the div mycontent
be shown in the lightbox window when clicking the link?