Armed Assault Wiki
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
function randomBg () {
    var imgs = [
        'http://static4.wikia.nocookie.net/armedassault/images/d/da/Wiki-Background-1.jpg',
        'http://static4.wikia.nocookie.net/armedassault/images/1/12/Wiki-Background-2.jpg',
        'http://static3.wikia.nocookie.net/armedassault/images/7/71/Wiki-Background-3.jpg',
        'http://static1.wikia.nocookie.net/armedassault/images/6/68/Wiki-Background-4.jpg',
        'http://static2.wikia.nocookie.net/armedassault/images/0/09/Wiki-Background-5.jpg'
    ];
 
    $('body').css('background-image','url(' + imgs[Math.floor((imgs.length) * Math.random())] + ')');
}
 
$(randomBg);
Advertisement