Hi, I'm dynamically switching a div's background-image with the jquery bit below. Works just fine in FF, but turns out in IE it does not. Any ideas why? Does IE not reload the image if a css property changed? Any pointers would be appreciated.
$(function(){
$('.header').each(function(){
$(this).hover(function(){
$('#headertab').css('background-image','url(/tab_'+$(this).attr('href').split('path=')[1]+'.gif');
});
});
});