Internet Explorer seems to be ignoring this ajax function call (below) but it works fine in FF?
Help someone please...
<script type="text/javascript">
function ajax_request(PartNum,InText) {
var str=PartNum;
str=str.replace(".","_");
strHTML = $('#image-placeholder'+str).html();
if (strHTML == '<p></p>')
{
$('#image-placeholder'+str).html('<p><mg src="/images/catalog/items/'+PartNum+'.gif" /></p>');
$('#text-placeholder'+str).html('<p>'+InText+'</p>');
}
else
{
$('#image-placeholder'+str).html('<p></p>');
$('#text-placeholder'+str).html('<p></p>');
}
}
</script>