I am currently using light box provided by … http://leandrovieira.com/projects/jquery/lightbox/
How do I have it so that if I click on a work it brings up the light box and shows text instead of an image?
what I want is the terms and conditions shown up in a lightbox.
HTML
<span id="terms"> <a href="">Terms & Conditions</a></span>
jQuery
$(function () {
$('#terms a').lightBox();
});
It seems like this lightbox plugin only works with images.
You should choose another plugin like colorbox: http://jacklmoore.com/colorbox/
It’s simple to use and supports iframes and also div elements inside the lightbox.