(event)
コンソールを割り当てると、これが出力され始めますが、Uncaught TypeError: Object #<Object> has no method 'ajaxSetup'
これは私が推測しているだけですが、何らかの理由で jQuery が元々関数呼び出しに含まれていた $ を探しているためです。
以下のスクリプトは、最初のスクリプト$
が呼び出されるまで機能します。.click(function(event){
これはワードプレスの Ajax の問題ですか?
jQuery(".articleTitle a").click(function(event){
event.preventDefault();
$.ajaxSetup({cache:false});
var post_id = $(this).attr("href");
$("#fold-above").css('display','none');
$("#fold-above").fadeIn(300);
$("#fold-above").load("<?php echo get_site_url(); ?>/ajaxpost/",{id:post_id});
return false;
});