I'm currently utilizing colorbox for a modal popup, and the content of the popup is being sourced from a URL. Since it's displayed within an iFrame, I'm wondering how I can incorporate a close button to the modal popup.
Thank you
The following code showcases color box:
<a class="Modal" href="http://google.com" onclick="openModal();">Click here</a>
Here is the corresponding JavaScript:
var openModal = function (){
$(".Modal").colorbox({
iframe:true,
opacity:0.5,
scrolling:true,
width:832,
height:456,
top:60
});
}