Opened 12 years ago
Closed 12 years ago
#7092 closed bug (invalid)
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.
Change History (2)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
The jQuery bug tracker is not a support channel. Please use the jQuery Forum.
Note: See
TracTickets for help on using
tickets.
to refresh page I use setInterval( "updateRequest()", 1000 ); Somebody suggested me window.setInterval( "updateRequest()", 1000 ); but the same problm arise. Please help me.