I am sending ajax call
on different server using script mentioned below.
$(document).ready(function() {
var uniqcod=$(".piczhu-widget").attr('id');
$.ajax({
url:'File Path...',
type:'post',
data:{uniId:uniqcod},
success: function(result){
$('.abcClass').html(result);
}
});
});
Script is not receiving any response. This script is working fine on the same server. Is there any additional parameter to use to send call on different server?