i have an asp.net-mvc site and i am getting weird behavior in internet explorer 7 on one page where the html result of an ajax call isn't showing up on the screen. This works perfect in Firefox, Chrome and IE8.
I first thought it was ajax related but to simplify and isolate the issue i got this to NOT work in IE7
$("#cupcakeOfMonthYear").live("click", function () {
$('#cupcakeOfMonthCalendar').html("ffffff");
});
Again, this works perfect in Firefox, Chrome and IE8 but when i change to compatibility mode to get the IE7 experience, the whole div area goes blank (instead of refreshing with the updated html).
Is this a bug in IE7?