[jQuery] force page to load content from another page

[jQuery] force page to load content from another page


I need the page to be forced to load content EACH TIME the page
loads. If I do this:
$(document).ready(function(){
$('#target').load('create.cfm');
});
The page will grab the stuff from create.cfm and load it into the div
as it should. (Note: Create.cfm contains the current timestamp)
The problem is that if I use the back button or forward button and
come back to the page, when that page is displayed again, the "load"
function never fires again and thus I see a cached timestamp that is
not valid.
I am looking for a way to FORCE the page to load dynamic content from
another page, EACH TIME the page is accessed. A good example of this
is at: http://recaptcha.net/fastcgi/demo/recaptcha to see it in action
fill out the form incorrectly, then press the back button. You will
see that you are not presented with cached content but rather new,
dynamic content.
Any of you guru's out there have any ideas?