Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created June 25, 2013 00:42
Show Gist options
  • Save dsebao/5855015 to your computer and use it in GitHub Desktop.
Save dsebao/5855015 to your computer and use it in GitHub Desktop.
Random images with jQuery (example for Wordpress theme)
$(document).ready(function(){
var images = ['image1.jpg', 'image2.jpg','image3.jpg'];
$('#bg').css({'background-image': 'url(wp-content/themes/mytheme/images/' + 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