Drupal 7 で Colorbox モジュールを使用しています。外部の Web サイトを開いています。リンクで動作させることができます。ここをクリックしてから、中央の列の一番下にある「colorbox popup」リンクをクリックします。クライアントは、ページが開いたときにこれが自動的に開くことを望んでいます。ブロックを作成し、次のコードを追加しました (colorbox サイトから)。
<script type="text/javascript">
// Display a welcome message on first visit, and set a cookie that expires in 30 days:
if (document.cookie.indexOf('visited=true') === -1) {
var expires = new Date();
expires.setDate(expires.getDate()+30);
document.cookie = "visited=true; expires="+expires.toUTCString();
jQuery.colorbox({html:"URL goes here", width:887, height:638});
}
</script>
しかし、うまくいきません。
どんな助けでも大歓迎です。