I have the navigation bar as below
<ul>
<li class="selected"><a href=">My Profile</a></li>
<li><a href="">xxxx</a></li>
<li><a href="">mybook</a></li>
<li><a href="">Photos <span>4</span></a></li>
<li><a href="">Profile List</a></li>
</ul>
I want that if the url is www.abc.com/user/profile then profile tab class should have class selected attached
If photos then photo tab.
If we can have partial match that will be good but i am not sure if thats possible
like in url i have /user/book and myBook gets selected
if ( .attr("href") == "your URL") { ...