On the aspx page, I have something like this:
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script type="text/javascript">
$("li").mouseover(function () {
$("li").css("background-color", "blue");
});
</script>
<ul id="second">
<li> <a href.../a> </li>
<li> <a href.../a> </li>
<ul>
and on the masterpage there is a menubar created in the list format too. So when I mouseover the menubar the li background items turn blue, no problem. But when I mouseover the second li nothing happens. I'm not very familiar with asp. I tried the solution JQuery don’t work in aspx-page with Masterpage i'm not even sure if it applies to it.
thanks