ページの読み込み時に jQuery ライトボックスを読み込ませようとしています。途中まで来ました。ページが読み込まれるとライトボックスが開きますが、ページ全体と同じウィンドウでリンクが開きます。リンクを別のウィンドウにロードする前に、この時点で停止するにはどうすればよいですか。
jQuery:
$(document).ready(function(){
$("a.greybox").bind("click", openbox);
$("a.greybox").trigger('click', openbox);
function openbox(){
var t = this.title || $(this).text() || this.href;
GB_show(t,this.href,340,220);
}
})
HTML:
<a href="http://google.com/" title="Google" class="greybox">Launch Google</a>