Possible Duplicate:
json Uncaught SyntaxError: Unexpected token :
Does jsonp depend on server support, in order to return a correct response?
I got this request, and what I get back is js error.
$.getJSON('myURL?q=keyword&callback=?', function(data){console.log(data)});
even angular jsonp method isn't working:
http://jsfiddle.net/neoswf/tckGG/5/
console >> js error: Uncaught SyntaxError: Unexpected token :
Does jsonp depends on some server implementations?
SOLVED!!!
This question is different from others cause no other answers speak about the proxy solution.