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'
);
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.