Reputation: 3517
I'm using jQuery to load a page using the $.get function. Suddenly I'm getting 302 errors. It worked fine last time I checked. When I open the page I want to load in my browser, it works fine. Maybe because I upgraded to firefox 5.0. Is there a fix for this?
Thanks, Rik
Upvotes: 0
Views: 666
Reputation: 936
The document is in your cache. you can try clean your cache or put a random parameter to the end of the url string like this: http://my.url.com/mypage.asp.php?random=xxxx
where each query xxxx is a diferent random number.
Upvotes: 0
Reputation: 116100
302 is not an error, but a response code meaning that the page is to be found elsewhere.
Upvotes: 1
Reputation: 78840
302 is not an error. It simply means that the resource is at a different URI. See this document on HTTP status codes.
Upvotes: 2