The usual way to assign color box functionality on a link is like this:
$(\"a.colorbox\").colorbox({ transition: \"elastic\" });
Newly added
As live is depreciated, you should use on
$('body').on('click', '.colorbox', function() { $('.colorbox').colorbox({rel: $(this).attr('rel')}); });
This code also allows grouping.