mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-16 10:32:08 -05:00
3 lines
123 B
JavaScript
3 lines
123 B
JavaScript
$.getJSON("/quotes.json", function(data){
|
|
$("p#randomquote").text(data[Math.floor(Math.random() * data.length - 1)])
|
|
}) |