Hello friends....
Please help me... This is my popup window script...
i want to open one window when i click on that image...
<script type="text/javascript">
$(function()
{
$(window).bind('load',
function(e)
{
$.colorbox({opacity:0.3, href:"css/images/popup.gif"});
});
});
</script>
<script type="text/javascript">
$(function(){
$('.myclass').colorbox({opacity:0.3, href:"css/images/popup.gif"}); for all elements with a class of "myclass"
$('#myID').colorbox({opacity:0.3, href:"css/images/popup.gif"}); for all elements with an ID of "myID"
});
</script>