I'm trying to open a jQuery Colorbox from a link outside the rest of the colorbox images. So, all of the examples look like this:
<a href="image1.png" rel="group1"><img src="thumb1.png" /></a>
<a href="image2.png" rel="group1"><img src="thumb2.png" /></a>
<script>$("a[rel='group1']").colorbox();</script>
OK, that's fine, but I also need to open that colorbox from a separate link:
<a href="?"> this link should also open the colorbox </a>
What do I have to put where to do that? All of the colorbox examples just show what's in the first code block, and I'm no jQuery expert.