Ticket #10184 (closed bug: invalid)
$.getJSON bug in IE8, not IE9
| Reported by: | christian.audebert@… | Owned by: | christian.audebert@… |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | ajax | Version: | 1.6.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
i have an application who used getJSON to take response from recording informations. it work perfectly in IE9, but for old peer computer who are again in Windows XP, with IE8, the response is inoperative. i used this code, before.
$.getJSON("getedi.php", { lancerlacher:true ,d:d}, function(json) {
but this code lost the response in old IE8. i must use a $.get to obtain the response like this
var jqlacher = $.get("getedi.php", { lancerlacher:true ,d:d}, function(response,status,jqcl) {
and convert it to json by
json=$.parseJSON(response);
to have a correct response. otherwise, the response is lost. any idea on the source of this problem.?
Change History
comment:2 Changed 22 months ago by addyosmani
- Owner set to christian.audebert@…
- Priority changed from undecided to low
- Status changed from new to pending
- Component changed from unfiled to ajax
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket!
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.
Note: If you need to test any of the $.ajax methods, jsFiddle supports calling /echo/json for the URL parameter and is generally sufficient for testing purposes.
comment:3 Changed 21 months ago by trac-o-bot
- Status changed from pending to closed
- Resolution set to invalid
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

due to lake of debug functionnality in iE8, i can't analyse the exact cause of missed response.. any idea to track data transfered in xp with IE8.?