リンクをクリックすると、変数のhref値(数値は一意のIDを表します)を取得します。次に...別のulがあります。
<ul class="class_one">
<li class="class_two"><a href="2345">some text</a></li>
<li class="class_three"><a href="6789">some text</a></li>
</ul>
私がやろうとしているのは、変数にストックしたのと同じIDを持つ「ul」に「a」があるかどうかを確認することです。
私はこのようなことを試しました(もちろん結果はありません):
$('ul.class_one').find('a[href="' + myVar + '"]')
//and if it finds no element do something
//i think is something wrong with the quotes ('a[href="' + myVar + '"]')