スクリプトを移動します。 あなたがそれらを置く場合:
<script type="text/javascript" src="/res/js/fancydropdown.js"></script>
<script type="text/javascript" src="/res/js/jquery.lightbox-0.5.js"></script>
<script type="text/javascript">
$(function() {
$('a.lightbox').lightBox();
});
それは問題ありません。 あなたは<head>
ここ
jQueryライブラリ
ライン13にjQueryライブラリを3回を含めている:<script type="text/javascript" src="/res/js/jquery.js"></script>
ライン14:<script type="text/javascript" src="/res/js/jquery.lightbox-0.5.js"></script>
ここ
jQueryライブラリ
ライン21:<script type='text/javascript' src='http://norcalwater.blackdogstaging.com/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
jQueryライブラリhe再(これはjQueryのコードとジュージューという音がありますファイルJS内 - jQueryライブラリの一部)
をライン40:<script type="text/javascript" src="/res/js/fancydropdown.js"></script>
fancydropdown.jsは、内部にjQueryライブラリは現在、jQueryの3回、その後、スクリプトを読み込むいたように、あなたはそれをクリアする必要があります。
乾杯
G.