i have the following piece of code in the page HEAD:
<script type="text/javascript">
$(document).ready(function(){
$(".open_popup_clips").colorbox({width:"520px",height:"480px", iframe:true});
});
</script>
as a result, the pop up will open correctly only when the page finished loading, before that it
will open the link in the browser window, the regular way.
is the a way to make links open in pop up before page has completely loaded. i tried placing this block of code in the BODY but that did not work..
the best thing of course would be to speed up the load process but let's leave that aside for now.
thanx for any replay and have a nice day :-)