It looks like you're new here. If you want to get involved, click one of these buttons!
jQuery('ul.gallery li a').colorbox();
<ul class="gallery">
<?php
$CI->load->model('member_images_model');
$images = $CI->member_images_model->find_all(array('member_id'=>$memberId), 'id asc');
foreach($images as $img):
$image = img_path() . 'members/' .$img->image;
echo '<li>
<a href="' . $image .'" rel="' . $memberId . '"><img src="' . $image . '" height="100" /></a>
</li>';
endforeach;
?>
</ul>
Comments
$(function(){
jQuery("ul.gallery li a").colorbox()
});
http://localhost/clarenssaNewFuel/page
Now the colorbox is working.