Created
August 6, 2014 16:38
-
-
Save Usse/c10b85e86ceade19481a to your computer and use it in GitHub Desktop.
Reddit username color
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
var objUsers = {}; | |
function getRandomColor() { | |
var letters = '0123456789ABCDEF'.split(''); | |
var color = '#'; | |
for (var i = 0; i < 6; i++ ) { | |
color += letters[Math.floor(Math.random() * 16)]; | |
} | |
return color; | |
} | |
$('.author').each(function(){ | |
var user = $(this).text(); | |
var objUser = {name: user, color: getRandomColor()}; | |
objUsers[user] = objUser; | |
}); | |
$.each(objUsers, function(index, value) { | |
$("a:contains('" + index + "')").css("color", value.color); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment