Ajax call on different server

Quarum

New Member
I am sending \[code\]ajax call\[/code\] on different server using script mentioned below.\[code\]$(document).ready(function() {var uniqcod=$(".piczhu-widget").attr('id'); $.ajax({ url:'File Path...', type:'post', data:{uniId:uniqcod}, success: function(result){ $('.abcClass').html(result); } }); });\[/code\]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?
 
Back
Top