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..

You need to use JSONP for cross-domain access. Therefore, you have to modify your AJAX call.
An good explaination for this scenario is here:
http://www.jquery4u.com/json/jsonp-examples/