JSONP

test.json

test({"name":"Coniglio"})

javascript

function test (json) {
    alert(json.name);
}

html

<script type="text/javascript" src="http://xxxx/test.json"></script>