web-dev-qa-db-ja.com

ページの読み込み時にカラーボックスを開く

ページの読み込み時にカラーボックスを機能させようとしていますが、背景が無地の読み込みしか表示されません。私はこのコードを使用しました

$.fn.colorbox({id:'', title:'',open:true});

ここでデモを見つけることができます

http://www.bloggermint.com/demos/popupsub/colorbox/example5/index.html

10
Franklin

編集:

<script type="text/javascript"> 
        $(document).ready(function(){
          $.colorbox({width:"30%", inline:true, href:"#subscribe"});
        }); 
</script>  
41
kei