I am having some problems when trying to use jQuery from within colorbox.
When I call any jQuery from the page that calls the colorbox it works fine.
My code currently calls a colorbox with another page inside it using the following code.
var page1 = '/page1/page.php';
jQuery(".page1click").colorbox({opacity:0.4, rel:'nofollow', href:page1, height:'700px', width: '702px', iframe:true});
This all works correctly and my code is showing within the colorbox popup. Also all of my javascript code is working within this page. However when I try and use any jQuery from within the colorbox it does not work.
What i am trying to do is hide a div when it is clicked.
If anyone could help that would be great