I want to change the background color of LI Tag that I have clicked....
But the problem is , that the code(both JQuery and LI list) is on masterpage(Admin.master) ,
I have written the following code on Admin.Master page...But it doesnt seem to Work.....
<div id="main_menu">
<ul>
<li><a href="dashboard.aspx">Dashboard</a> </li>
<li><a href="Contacts.aspx">Contacts</a></li>
<li><a href="MeetingA.aspx">Schedule Meeting</a></li>
<li><a href="Tasks.aspx">Task</a></li>
<li><a href="Calendar.aspx">Calendar</a></li>
<li><a href="Documents.aspx">Documents</a></li>
</ul>
</div>
My JQuery Code is:
$(document).ready(function(){
$("li").click(function(){
$('li').removeClass('selected');
$(this).addClass('selected');
});
});
Style :
<style type="text/css">
li { color: #000; } li.selected { color: #FF0000; }
</style>
All the code is on MasterPage, but not getting the solution..
Thanks, Vishal