Skip to content

Instantly share code, notes, and snippets.

@mayeenulislam
Last active August 29, 2015 14:03
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 mayeenulislam/0f104e022d70e0fb9422 to your computer and use it in GitHub Desktop.
Save mayeenulislam/0f104e022d70e0fb9422 to your computer and use it in GitHub Desktop.
Colorful grids
<script type="text/javascript">
/**
* Source: http://stackoverflow.com/a/10540361
* Thanks to: dknaack
*
* Loads custom color in each of the divs' background on each iteration
*/
function get_random_color() {
var letters = '0123456789ABCDEF'.split('');
var color = '#';
for (var i = 0; i < 6; i++ ) {
color += letters[Math.round(Math.random() * 15)];
}
return color;
}
$(function() {
$(".div-class-name").each(function() {
$(this).css("background-color", get_random_color());
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment