Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to open a new colorbox from a parent colorbox but the parent colorbox should be closed on redirecting to the new one. i have tried a lot search out contents in stack but not getting the solution.

<script type="text/javascript">

        $(document).ready(function(){

            $("#btnUpdate").click(function(){

            $.ajax({
                url:"cart.php",
                type:"post",
                data:$("#frmCart").serialize(),
                success:function(result){
                    alert('Product updated to cart!');  
                    $.colorbox({html:result});


                    },
                }); 
                parent.$.colorbox.close();
            });


        });
</script> 
share|improve this question
Can you post the structure of your HTML related to #btnUpdate/ the colorboxes? – MarkR Aug 13 '12 at 9:45
What happens if you don't close ? – Ricardo Lohmann Aug 14 '12 at 11:14

1 Answer

You can have the demo for opening new Colorbox from a Colorbox here

Demo Here

And can download it from here

Download it

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.