I have (http://science.users.anapnea.net) a section of html/js that isn't playing well in other browsers.
The section in question is an anchor tag that calls a jquery $.get function:
$.get("info.html", function(data){
$('#page1Content').html(data);
});
This is doing nothing in IE, but works fine in FF and Chrome. The only hint of what might be the problem that I have found is one user reported a content-type error that caused a similar function not to work in IE
I am using meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
in the info.hmtl page
Additionally, while the info.html page will load correctly in Chrome, within that page there is a colorbox function to display some inline content. This function works when I go directly to info.html, but not when I load info.html through the $.get request.
Any input on this would be most helpful, and I really hope the formatting on this is correct...(couldn't find a faq entry regarding markup used within the input box here...)
Thanks.