I have external json URL.
http://kun6858.iptime.org:8080/apps/list/?app_mb_no=9
And I access this json with jquery $.getJSON(..)
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<script>
$.getJSON(
"http://kun6858.iptime.org:8080/apps/list/?jsoncallback=?",
{
app_mb_no : 9
},
function(data) {
console.log(data);
}
);
</script>
</body>
</html>
But I can't access the JSON using above source.
I have no idea about how to access external server's json. Does my source have problem? or the JSON?
for your reference, this is screen shot..