As my first foray into jQuery, I'm doing a number of things in a webpage generated by PHP. It
- Highlights items in my Navigation bar in a hover effect
- Rounds the corners of certain DIVs and
- Loads a DIV called 'postit' from an external file.
- It is also meant to zebra-stripe tables with ID='playlist' even if they're in the HTML loaded into the 'postit' DIV.
It all works fine in FF 3.6.10, but the zebra-striping doesn't work in IE8. I adopted a technique found by searching SO and tested it in a stand-alone PHP file with only zebra-striping done by jQuery.
It works there but I think there's some kind of conflict going on between the several things I'm asking jQuery to do in the code below. Can anyone suggest what I might be doing wrong?
Here is some relevant code from the PHP file.
<link rel="stylesheet" type="text/css" href="/styles/music.css">
<script type='text/javascript' src='http://pc-06/jquery-1.5.2.min.js'></script>
<script type='text/javascript' src='http://pc-06/jquery.corner.js'></script>
<script type='text/javascript'>
var jsvar = '<?php echo"$af" ?>';
$(document).ready(function(){
$('#top').css('background-color','#934').corner('top keep');
$('#footer').css('background-color','#934').corner('bottom keep');
$('#nav a').hover(function(){
$(this).addClass('highlighted');
}, function(){
$(this).removeClass('highlighted');
});
$('#postit').click(function(){
$('#postit').animate({
height: 'toggle'
},1000, function() {
});
});
$('#postit').load(jsvar).corner('round 10px keep');
$("#playlist tr:nth-child(odd)").addClass("odd");
});
</script>
I have a large CSS file, the part related to zebra-striping is
#playlist tr:nth-child(odd) td {
background-color : #ddf;
}
#playlist tr.odd td {
background-color : #ddf;
}