how to feth data from thirdparty server with ajax

how to feth data from thirdparty server with ajax

 $.ajax({
type : "POST",
cache : false,
dataType : "jsonp",
success: function(Result){
              alert(Result);
}
     });

i got following error

Uncaught SyntaxError: Unexpected token <

link