.php
カラーボックスで作成されたモーダルポップアップにファイルをロードする方法を知りたいです(カラーボックスはjqueryプラグインであるため、モーダルダイアログポップアップを作成できます)?
これは私がロードしたいものです
<?php include './includes/misc/misc.inc.php';?>
これに:
<div id="cboxLoadedContent"></div>
何か案は?
モーダル ポップアップのコードは次のようになります。
$(document).ready(function(){
$(".register_link").colorbox({
initialWidth:'896',
initialHeight:'450',
innerWidth:'896',
innerHeight:'450',
fixed:true,
scrolling:false,
transition:'none',
onOpen: function(){
$("#colorbox").css("opacity", 0);
},
onComplete: function(){
$("#cboxLoadedContent").appendTo("#cboxContent");
var title = 'Register';
$('#cboxTitle').text(title);
$("#colorbox").animate({"opacity": 1});
}
});