Side navigation
#7092 closed bug (invalid)
Opened September 28, 2010 05:25AM UTC
Closed September 28, 2010 06:20PM UTC
My application is going crashed in IE
Reported by: | ankitchauhan | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | 1.4.3 |
Component: | unfiled | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hi
I am workinh on chat system in php. So for that I am using IFrame. I have to refresh 4 section on a page, per second.
In IFrame I load a file using jquery load function in a div.
like
function updateRequest(){
$('#requistDiv').load("visitor_requests.php");
}
The line $('#requistDiv').load("visitor_requests.php");
is creating problem.
If I comment this line, IE do not create the problem
In this file the only php code is written to display some visitor request in table format.
Attachments (0)
Change History (2)
Changed September 28, 2010 05:31AM UTC by comment:1
Changed September 28, 2010 06:20PM UTC by comment:2
resolution: | → invalid |
---|---|
status: | new → closed |
The jQuery bug tracker is not a support channel. Please use the jQuery Forum.
to refresh page I use setInterval( "updateRequest()", 1000 );
Somebody suggested me window.setInterval( "updateRequest()", 1000 );
but the same problm arise.
Please help me.