Chris Jordan schrieb:
Hi folks,
I've searched the archives, but didn't find what I was looking for. So
if this has already been discussed and someone can point me to the old
thread, that'd be awesome. Otherwise:
Is it possible to trigger the opening of a thickbox without a link? In
other words, I want to do this:
<script>
if(true){
open.thickbox.somehow(url, width, height, etc, etc, etc)
}
</script>
Thanks,
Chris
You could hijack a link with trigger for that... If the link has been
thickboxed:
$('#trigger-thickbox').trigger('click');
Don't know if that helps.
-- Klaus