I have this code:
$.post(\"php/tagNotifUnsub.php\", $(\"#tagNotifUnsub\").serialize(), function(){ $(\'#tagSubDiv\').load(\'tags.php #tagSubDiv\
Partly right, Daniel A. White!
On devices running iOS6 and Safari, POST is also cached.
What you can do is the following:
$.ajaxSetup({ type: 'POST', headers: { "cache-control": "no-cache" } });