$(document).ready(function(){ $.getJSON("_site/examples.json") .done(function(data) { var i = 0; var node = ''; $.each(data, function(dir, files) { node = '
Unable to load examples.json data file
'; node += 'Did you open this html file locally?
'; node += 'It needs to be opened via a web server, or due to browser security permissions
it will be unable to load local resources such as images and json data.
Please see our Getting Started guide for details.
'; $("#viewer").contents().find('body').append(node); }); });