js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
random color generator css,javascript,html
//Javascript
function randomColor(){
var color = "#";
var randomHex = "123456ABCDEF";
for(var i = 0; i<6;i++){
color+= randomHex[Math.floor(Math.random()*16)]
}
return color;
}
var mytimer ;
function setColor(){
$("body").css("background-color", randomColor);
}
var mytimer = setInterval(setColor, .8000);
// html
!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
//include javascript file.
</body>
</html>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us