Skip to content

Instantly share code, notes, and snippets.

@jdcauley
Created January 22, 2014 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdcauley/8566884 to your computer and use it in GitHub Desktop.
Save jdcauley/8566884 to your computer and use it in GitHub Desktop.
Random Image Load using jQuery
$(function() {
var images =['1.jpg', '2.jpg', '3.jpg', '4.jpg'];
$('#ai-bg').css({'background-image': 'url(assets/images/bg/' + images[Math.floor(Math.random() * images.length)] + ')'});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment