Ticket #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: | ||
| Blocking: | Blocked by: |
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
comment:2 Changed 3 years ago by snover
- Status changed from new to closed
- Resolution set to invalid
The jQuery bug tracker is not a support channel. Please use the jQuery Forum.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

to refresh page I use setInterval( "updateRequest()", 1000 ); Somebody suggested me window.setInterval( "updateRequest()", 1000 ); but the same problm arise. Please help me.