Is is possible to take data from a .json file and render it with HTML/JavaScript if for example a person types "example1" in a input field and be able to render the data related to "example1" onto that page ?
I'm pretty sure this can be accomplished, becuase I have seen the same if an input field requests data from an XML file and renders the data onto that page using JavaScript.
Here is my data inside a JavaScript file, but certainly be put into a .json file if needed to.
var JSONObject = {
"id":"1",
"user" :"admin",
"pass":"admin",
"api":"000014556452446455455685454645"};
document.getElementById("jid").innerHTML=JSONObject.id
document.getElementById("juser").innerHTML=JSONObject.user
document.getElementById("jpass").innerHTML=JSONObject.pass
document.getElementById("japi").innerHTML=JSONObject.api
document.getElementById("jtest").innerHTML=JSONObject.test