This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place in your body: | |
// <div id="randomimg"></div> | |
$(function () { | |
GetRandRedditImage("Pics"); | |
function GetRandRedditImage(subreddit) { | |
var imgcontainer = $("#randomimg"); | |
var aRandomNum = Math.floor((Math.random() * 25) + 1); |