jQuery post JSON data using .post() method by codeofaninja.com jQuery post JSON data using .post() methodClick the button below to get response. $(document).ready(function(){ $('#postJson').click(function(){ // show that something is loading $('#response').html("Loading response..."); /* * 'post_receiver.php' - where you will pass the form data * $(this).serialize() - to easily read form data * ..