jQuery getJSON alternative for POST requests:
jQuery.extend({ postJSON: function( url, data, callback) { return jQuery.post(url, data, callback, "json"); } });
A geeks diary based on bits
jQuery getJSON alternative for POST requests:
jQuery.extend({ postJSON: function( url, data, callback) { return jQuery.post(url, data, callback, "json"); } });