[jQuery] Ajax cache setting with type='post'

[jQuery] Ajax cache setting with type='post'


It looks to me like when you do this:
$.ajax('someURL', {cache: false})
...jQuery adds a random string to the submitted params, to avoid
browser caching. This is the behavior I want.
But if you do this:
$.ajax('someURL', {cache: false, type: 'post'})
..the random string isn't there.
Is this intentional? Is something different required to set that up
for post requests?
(I'm unable to reach the docs wiki at the moment, connection resets.)
Thanks