I am trying to make an array of strings and then pluck a random string and place it in a div with class "quote". Below is my current code.
$(document).ready(function() {
var quotes = new Array("foo", "bar", "baz", "chuck");
var randno = Math.floor ( Math.random() * quotes.length );
$('.quote').add(quotes[randno]);
});
What am I doing incorrectly?
Thanks
$(document).ready(function() {
var quotes = new Array("foo", "bar", "baz", "chuck"),
randno = quotes[Math.floor( Math.random() * quotes.length )];
$('.quote').text( randno );
});
try this
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With