$(function() { return $.getJSON('./quotes.json', function(data) { var quote; quote = data[Math.floor(Math.random() * data.length)]; return $('#quote').append("

" + quote.title + "

" + quote.description + "

"); }); });