Adrian
Adrian

Reputation: 2656

Link to full size image in Colorbox

Is there any way to link to the original image in Colorbox?

I have a hack which works OK, but I want know if there is any other way to do this:

<a href="full_size.jpg" title="<a class='cbox_expand' href='full_size.jpg'>Expand</a>">Photo_1</img>

enter image description here

Upvotes: 2

Views: 1306

Answers (1)

Jack
Jack

Reputation: 9548

$('a.example').colorbox({
  title: function() {
    return $('<a>Expand</a>').attr('href', $(this).attr('href'));
  }
});

Upvotes: 3

Related Questions