Examples of .post

Example 1 jQuery.post( 'play_ajax.php', { 'action' : $( "#add_to_channel_dialog_form" ).dialog('option', 'action'), 'userid' : '12345', 'videoid' : '6789', 'allid' : $("#alliance_id").val() }, function(data, textStatus) { alert(data.message); if(data.status == 1) { $( "#add_to_channel_dialog_form" ).dialog( "close" ); } }, 'json' );  

Read More