I have json file mydata.json, and in this file is some json-encoded data.
mydata.json
I want obtain this data in file index.html and process this data
index.html
use jQuery's $.getJSON
$.getJSON('mydata.json', function(data) { //do stuff with your data here });