I have a series of pages, the title of which is stored in a var.
I want to create a script that does something to the pages corresponding navigation link. On my site the title and the name of the navigation link are identical, so I just use an if and each statement as below:
$.each($("#menu ul li ul li ul"), function() {
if($(this).find("a").html() == pagetitle){
//DO SOMETHING
}
});
The problem is, this only seems to loop through once. It only grabs the first li and a tag, and thus only works on one page.
Can anyone suggest a way of correcting this?
EDIT: html:
<div id="menu">
<ul>
<li><a href="somewhere.html">enu Item</a>
<ul>
<li><a href="somewhere.html">Menu Item 2</a>
<ul>
<li><a href="somewhere.html">Menu Item 3</a></li>
<li><a href="somewhere.html">Menu Item 4</a></li>
<li><a href="somewhere.html">Menu Item 5</a></li>
<li><a href="somewhere.html">Menu Item 6</a></li>
</ul>
</li>
<li><a href="somewhere.html">Menu Item 7</a></li>
<li><a href="somewhere.html">Menu Item 8</a></li>
</ul>
</li>
</ul>
</div>
