Thanks, Keegan!

I had to modify the query string to:

var filePath = '../components/propertiesDisplay.cfm?' + new
Date().getTime();

but that's working perfectly!

A life saver!

Rick

-----Original Message-----
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of KeeganWatkins
Sent: Sunday, August 16, 2009 5:20 PM
To: jQuery (English)
Subject: [jQuery] Re: FF processes this line fine; IE doesn't...why?


Can you be sure that the response isn't being cached in IE? Even if
the .cfm response is changing, you might try to bust the cache with a
semi-random query string, i.e:

var path = '../components/propertiesDisplay.cfm?' + (new
Date).getMilliseconds();
$("#hiddenResult").load(path, null, initPagination);

On Aug 16, 2:55 pm, "Rick Faircloth" <r...@whitestonemedia.com> wrote:
> Thoughts on this anyone?
>
> From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
> Behalf Of Rick Faircloth
> Sent: Saturday, August 15, 2009 8:10 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery] FF processes this line fine; IE doesn't...why?
>
> Does IE have a problem with the .load function?
>
> FF processes this line without problem.IE just seems to reload the same
>
> content that was on the screen before this line is run.
>
> $('#hiddenresult').load('../components/propertiesDisplay.cfm', null,
> initPagination);
>
> I've verified that the content of propertiesDisplay.cfm is, indeed,
changing
> with
>
> each search that is run (running a search is what produces the results
that
> are output
>
> to propertiesDisplay.cfm as HTML).
>
> I thought perhaps IE (7 & 8) might have a problem with .load.
>
> Thoughts anyone?
>
>
---------------------------------------------------------------------------
-
> ------------------------------------------
>
> "Ninety percent of the politicians give the other ten percent a bad
> reputation."  - Henry Kissinger

Reply via email to