simple .post
$.post( url, {data}, function(data) {}, 'html' ); --- $.ajax({ url : url, data: {}, type: 'POST', beforeSend: function(xhr){}, success: function(data){}, complete: function() {} });