Ajax: how to prevent IE from caching Ajax GET requests demo

by 4webby.com

this demo is part of the Ajax: how to prevent IE from caching Ajax GET requests

test me with Internet Explorer and another browser to see the difference

click me to see this demo

CACHED BY IE

Normal Ajax request (content shouldn't change in IE)

$("#loadedContent").load('/blog/tags/index/50');

NOT CACHED BY IE

Ajax request with timestamp to avoid caching

$("#loadedContent").load('/blog/tags/index/50/'+ myTimestamp());