Click here to Skip to main content
15,904,288 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have written a code to load an external page into a div thats working fine in Firefox but not in IE8. Pls help me to solve this.


JavaScript
$(function(){
       $.get('msg.php',{},function(data){
	  setInterval(function()
   {
     $('#chatbox').load('msg.php',data);
   }, 0.5);
          
       });
	  
   });



its not displaying anything in my div chatbox
Posted
Updated 17-Feb-13 23:34pm
v2
Comments
Zoltán Zörgő 18-Feb-13 0:39am    
And how exactly is it not working? Have you tried to enable debugging in IE developer toolbar?
Sergey Alexandrovich Kryukov 18-Feb-13 0:51am    
What element has the id="charbox"? Does msg.php replies with whole HTML document, or a fragment?
—SA
Sandeep Mewara 18-Feb-13 9:35am    
What happens? What do you observe while debug?

1 solution

Play around with the timeout value...may be explorer is taking a long time to process the request... 0.5 is a very minimal timeout...


use in ranges of 00 e.g. 100, 200 , 500 ,.......
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900