Hi, You can fetch json data into your file by ajax call using jquery.like this$.ajax({ url: "load.json", //force to handle it as text dataType: "text", success: function(data) { //data downloaded so we call parseJSON function //and pass downloaded data var json = $.parseJSON(data); //now json variab...