I have the following problem:
On my website I am using colorbox to display information in a lightbox and I have several divs which you can click to retreive the specific data you want to see. But the jQuery-script I am using only lets the user open a colorbox-screen once and doesn’t work after that untill the page is reloaded.
$(".items").click(function(){
$.colorbox({href:$(this).find("a.link",this).attr("href"),width:"900px",maxHeight:"70%"});
return false;
});
Thanks in advance!
Thanks everyone for your time, the working solution is:
Thanks again!