Initialize lightbox:
<script type="text/javascript" src="<?=SITE_TEMPLATE_PATH?>/js/slimbox2.js"></script>
I have static images on page:
<a class="itogdetimg" href="" rel="lightbox" title="">
<img width="83px" src="/img.png" border="0"/>
</a>
And i have link with id="knav1"
on click this load new images with jquery script:
$("#knav1").click(function(){
$("#navldesc").load('/api.php?nvl=y&komplektn=Комплит2');
});
Links type is the same as above, but lightbox with them no longer works. I think this is because of was originally do not have them on page. How can I fix this problem?