Reputation: 16375
I open a jquery colorbox. The href takes me to a page which has a lot of external links to. I wish to be a able to click on the link and for the link to be open in the color box that is opened. Is that possible??
The link is a Facebook login.
Upvotes: 0
Views: 495
Reputation: 26320
If you take a look the site examples you'll see that it's possible to open it as an iframe.
$('#myLink').colorbox({iframe:true, width:"80%", height:"80%"});
References:
Upvotes: 1