Hello Guys.
my problem is this:
I want to use this Jquery:
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server"> <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"> $(document).ready(function () { $("#tblGames tr:even").addClass("alt"); $("#tblGames div:odd").addClass("alt"); }); </script>
in order to alternate coloring a table (zebra style)
this is the table definition:
<table id="tblGames" runat="server" border="1" style="border-style: solid;" frame="border" class="mytable">
no matter what I do, it doesn't work.
The table doesn't get colord..
Please hekp :)
Rotem