zeus.ugent.be/content/assets/scripts/quote.coffee
2016-10-03 22:33:52 +02:00

5 lines
197 B
CoffeeScript

$ ->
$.getJSON 'http://localhost:3000/quotes.json', (data) ->
quote = data[Math.floor(Math.random()*data.length)]
$('#quote').append("<h3>#{quote.title}</h3><p>#{quote.description}</p>")