特定のdividが現在のページにロードされているかどうかをJqueryに検出させてから、別のdivid要素を非表示にします。次に例を示します。
<div id="A1">some content here</div> //initially this div is visible
<div id="C1" style="display: none;">some content here</div> //initially this div is invisible
<div id="B1">some content here</div>
Jqueryが#B1が現在のページにロードされていることを検出した場合は、#A1を非表示にして#C1を表示します。
どうもありがとう