#4009 closed bug (invalid)
Ajax does not work properly in Internet Explorer
Reported by: | wintorez | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | ajax | Version: | 1.3.1 |
Keywords: | IE, AJAX | Cc: | |
Blocked by: | Blocking: |
Description
In Internet Explorer, When you try to reload a value from sever with ajax using $.get(), the first time, it works fine; but after that $.get() does not load a fresh value and always returns the first value it had returned. This problem does not happen in FF.
Attachments (1)
Change History (3)
Changed 14 years ago by
comment:1 Changed 14 years ago by
Opps! Had to add this line before calling ajax in order to avoid the problem:
$.ajaxSetup({ cache: false });
comment:2 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Yep, caching is on by default.
Note: See
TracTickets for help on using
tickets.
sample file demonstration the problem