私は以下のjsコードを使用しています
<script type="text/javascript">
$(document).ready(function(){
$(".youtube").colorbox({iframe:true, innerWidth:640, innerHeight:390});
$(".callbacks").colorbox({
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
});
});
</script>
次に、この以下のエラーが発生します
TypeError: $(...).colorbox は関数ではありません [このエラーで中断]
$(".youtube").colorbox({iframe:true, innerWidth:640, innerHeight:390});
ビデオリンクをクリックすると、ライトボックス効果の代わりにページで直接開きます