Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open colorbox from inside a iframe on top of parent window

I have a page with an iframe. The link inside an iframe should open colorbox. It works fine.

But it opens the colorbox inside the iframe. Is it possible to open the iframe over the parent window.

I appreciate any help.

     $(function() {
          $('#ajax').colorbox({iframe: true });
     });
like image 915
Josh Randall Avatar asked Feb 08 '12 13:02

Josh Randall


1 Answers

You should be able to trigger it in the top frame with

top.$.fn.colorbox({ params });

Although you'll need to spoon-feed it the data you want showing.

like image 147
Joe Avatar answered Sep 28 '22 12:09

Joe