RE: How to prevent IE from caching content added via ajax?

2009-09-17 Thread Rick Faircloth
Good to know, Josh! Thanks! -Original Message- From: Josh Nathanson [mailto:p...@oakcitygraphics.com] Sent: Thursday, September 17, 2009 5:03 PM To: cf-talk Subject: RE: How to prevent IE from caching content added via ajax? Oh...if you are using the load function, then you can just

RE: How to prevent IE from caching content added via ajax?

2009-09-17 Thread Rick Faircloth
Thanks, Tony! -Original Message- From: Tony Bentley [mailto:t...@tonybentley.com] Sent: Thursday, September 17, 2009 4:45 PM To: cf-talk Subject: Re: How to prevent IE from caching content added via ajax? If you are loading via url: function ts(){ var tr = '';

RE: How to prevent IE from caching content added via ajax?

2009-09-17 Thread Rick Faircloth
iginal Message- From: Josh Nathanson [mailto:p...@oakcitygraphics.com] Sent: Thursday, September 17, 2009 4:49 PM To: cf-talk Subject: RE: How to prevent IE from caching content added via ajax? Did you set cache: false in your $.ajax params? -- Josh -Original Message- From: Rick Fa

RE: How to prevent IE from caching content added via ajax?

2009-09-17 Thread Josh Nathanson
...@oakcitygraphics.com] Sent: Thursday, September 17, 2009 1:49 PM To: cf-talk Subject: RE: How to prevent IE from caching content added via ajax? Did you set cache: false in your $.ajax params? -- Josh -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Thursday

Re: How to prevent IE from caching content added via ajax?

2009-09-17 Thread Tony Bentley
If you are loading via url: function ts(){ var tr = ''; var curDateTime = new Date() tr += curDateTime.getHours(); tr += curDateTime.getMinutes(); tr += curDateTime.getSeconds(); return tr; } $("#myloaddiv").load(/ajaxDIV/index.cfm?id="+id+"&ts="+t

RE: How to prevent IE from caching content added via ajax?

2009-09-17 Thread Josh Nathanson
Did you set cache: false in your $.ajax params? -- Josh -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Thursday, September 17, 2009 1:42 PM To: cf-talk Subject: How to prevent IE from caching content added via ajax? Poor title, but I couldn't g

How to prevent IE from caching content added via ajax?

2009-09-17 Thread Rick Faircloth
Poor title, but I couldn't get it all in there. - got a page which loads a .cfm of content into a div via a jQuery .load function - the content for the .loaded .cfm page is generated in a cfc method, and I use cfsavecontent and save the generated content out to the aforemen