I am doing a cross domain get using jquery ajax but i get success as status in the error function.
I am expecting data to be returned from the get service is :
document.write("<div class=\"display_archive\"><div class=\"campaign\">07\/18\/2013 - <a href=\"http:\/\/us6.campaign-archive2.com\/?u=c7b9b2f23eb4f63fgfgf5ac4f&id=99e1f5f249\" title=\" Newsletter #3\" target=\"_blank\">Newsletter #3<\/a><\/div>");
but what i get is in error function
Object { readyState=4, status=200, statusText="success"}
My code
getResource : function ( containerSelector,serviceURL ) {
    $.ajax ({
        type : "GET",
        dataType: 'jsonp',
        jsonpCallback: 'jsonCallback',
        url : serviceURL,
        headers : {
            "Accept" : "application/json",
            "Content-Type" : "application/json"
        },
        success : function successData(resourceObj) {
            console.log("success ");
            console.log(resourceObj);
        },
        error : function errorData(resourceObj) {
            console.log("error ");
            console.log(resourceObj);
        },
    })
},
Am i missing something here ? help please
 
     
     
     
    