I'm hitting my head on the wall against this one ...
I have the following code:
$("#home").click(function(e) {
$(".tabs").attr("src","tabs-home.gif");
$(".islice").hide('fast');
$(".islice").load("home.html");
$(".islice").show('fast');
e.preventDefault();
});
It works perfectly fine in Firefox, Safari and Chrome, but IE only runs attr() and does not do either the hide/show or the load. I tried removing the hide and show and it still does not work.
IE reports no syntax errors, even with DebugBar. What could I be doing wrong?
You can see the live site at http://www.brick-n-mortar.com