I just upgraded to 1.1.2 version but still like in 1.1.1 when I try to use
$.get to fetch a php file it load an image in FF and Opera but in IE the
image in not loaded.

The segment of code I am using is as follows
$("#msg").show('slow');
                $.get("test.php", function(item) {
                $("#msg").slideUp('slow');
                $('#cartProducts').prepend('<div class="productCart"
id="item_'+productId+'"><div class="gen_info" id="' + productId +
'_info"></div>'+item+productId+'</div>');
                        $('#item_'+productId+'> 
#'+productId+'_info').html(gen_info(productId));

the test.php is as follows
<?php
$html = '
<div> nophoto.gif This is the first ajax thing I have been able to make work
on my site<br/>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</div>
';
echo $html;
?>

Can someone please tell me what is wrong or is this a known fact with jquery
and IE?

thanks
vik
-- 
View this message in context: 
http://www.nabble.com/Ajax-get-does-not-fetch-image-in-IE-tf3306977.html#a9198556
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to