dataType : 'jsonp' ,
crossDomain : true ,
jsonp : 'json.wrf'
$. ajax({
method: "GET",
dataType: "text",
crossDomain: true,
url: "http://vocabServerUrl/q/" + $( this). val()
}).done( function (data) {
console. log( 'ajax call has been made');
showVocabResults( that, data);
//vocabQueue.push({"key": that.attr("id"), "data": data, "element": that});
}).fail( function (msg) {
alert( "failed: " + msg);
});