solved Lightbox

hammondegs
@hammondegs
9 years ago
80 posts
Is there support in JamRoom for opening an html document in a lightbox?
If so, what is the procedure?
Thanks.
updated by @hammondegs: 04/08/15 07:59:49AM
brian
@brian
9 years ago
10,148 posts
hammondegs:
Is there support in JamRoom for opening an html document in a lightbox?
If so, what is the procedure?
Thanks.

Yes - but "lightbox" is for images, what you're looking for is a "modal" window - i.e.

<div id="document" style="display:none">
    .... YOUR HTML HERE ....
</div>
<input type="button" value="view the document" onclick="$('#document').modal()">

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
hammondegs
@hammondegs
9 years ago
80 posts
I thank you.

Tags