$(document).ready(function() {
$('.homenews ul li #Links').cycle('fade');
});
W/o the ".homenews ul li", Safari, FF, Chrome, IE8 wouldn't work, but with them in, IE6/7 won't work. If I un-nest the #Links div out and just put in outside of any other divs, etc. and then change the function to:
$(document).ready(function() {
$('#Links').cycle('fade');
});
everything works fine in all browsers so it makes me think I'm not calling that Div correctly. Not really sure how to do it though. Hoping someone can give me some pointers.
Thanks