how to read json data in source.name
Clash Royale CLAN TAG#URR8PPP
how to read json data in source.name
how do i access source.name in this jn this json file
"source":
"name": "iPrefs Main",
"description": "iPrefs installer Main Source",
"maintainer": "Kyle Mendell",
"packages": [
"id": "com.kmtech.iprefs",
"name": "iPrefs Mobileconfig",
"author": "Kyle Mendell",
"version": "3.0 Beta",
"url": "https://iprefs.tk/beta.mobileconfig"
]
ultimately trying to do this
$.each(result, function(index, val){
for(var i=0; i < val.length; i++){
var item = val[i];
console.log(item)
buffer+=" <li class='ui-nodisc-icon'><a class='ui-btn ui-btn-icon-right ui-icon-carat-r'>"+item.source['name']+"</a></li>";
the language would be javascript
– Kyle Mendell
4 mins ago
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Which language?
– Jaydip Rakholiya
5 mins ago