I am using the following code in my sifr.replace() call, with the goal of changing the background on the replaced element.
onRollOver: function(fi) {
$(fi.getAncestor()).addClass("over");
},
onRollOut: function(fi) {
$(fi.getAncestor()).removeClass("over");
}
This works well in in firefox, but not in IE6. I am wondering if I should look for an error on my part, or if these events are known not to work in IE. Thanks in advance for any thoughts.