Ajax does not send the data to my php file [migrated]
- by Mert METIN
I try to send my data to php file but does not work.
This my ajax file
var artistIds = new Array();
$(".p16 input:checked").each(function(){
artistIds.push($(this).attr('id'));
});
$.post('/json/crewonly/deleteDataAjax2', { artistIds: artistIds },function(response){
if(response == 'ok')
alert('dolu');
…