zeus.ugent.be/content/assets/scripts/quote.coffee

5 lines
197 B
CoffeeScript
Raw Normal View History

2016-10-03 20:33:52 +00:00
$ ->
$.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>")