Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some image and I want colorbox to start its gallery directly from mouse click on img tag, not on a hyperlink tag as the rules are. Is there any way to do that?

share|improve this question

2 Answers

up vote 3 down vote accepted
$('img').click(function() {
    $(this).colorbox({href: $(this).attr('src')});
});

Also see my jsfiddle: http://jsfiddle.net/5HdQB/

share|improve this answer
thanks for the help – David Aug 15 '11 at 7:00

first add a class to your imgs

<img src="..." class="myImg"/>

$('.myImg').click(function() {
    $(this).colorbox();
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.