<!doctype html>
<html>
<head>
<title>Parsing</title>
<script type="text/javascript" src="jquery-2.1.0.min.js"></script>
</head>
<script>
alert("ciao");
$.getJSON('', { get_param: 'value' }, function(data) {
});
</script>
<body >
<p>ciao<p>
</body>
</html>
With this code I want to parse this JSON:
asd'cp'pd'pcd'sp'sdp'dc
The browser console give me this error (I don't understand what it means):
XMLHttpRequest cannot load http://sath3g.altervista.org/index.php?get_param=value. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
What is wrong?