jQuery(document).ready(function($){ //on colorbox click (galerija) $("ul.galerija").on('click', 'a.colorbox', function(e){ e.preventDefault(); $.colorbox.close(); $(this).colorbox({ maxWidth:'95%', maxHeight:'95%' }); return false; }); });