私はいくつかの同様の質問を準備し、jqueryが含まれている最初のスクリプトであることを確認しました...
// this test confirms that jquery is defined
if (typeof jQuery == 'undefined') {
alert('jquery not defined');
}
// (this is being alerted)
else { alert( 'jquery is defined'); }
// this is what I want to achieve (to begin with)
jquery("#free-signup").css( 'display', 'none' );
そしてjqueryは定義されているようです...私は何が間違っているのですか?!