<script type="text/javascript">
$(document).ready(function() {
$("#GridView1 tr td:nth-child(even)")
.css("background", "gray");
});
</script>
where GridView1 is the id of the table.
Tweet
<script type="text/javascript">
$(document).ready(function() {
$("#GridView1 tr td:nth-child(even)")
.css("background", "gray");
});
</script>
1 comment:
Hi, it's a nice script, but the hover state for cells doesn't work when you apply it :/ otherwise it's great. Do you know what I should do to modify it?
Post a Comment