I'm using a simple JQuery call to replace some HTML in a DIV tag after an AJAX call.
$("#my_div").html('value');
This works great in the other browsers, but in IE it is just adding to the DIV instead of replacing the HTML.
Any ideas why that would happen?