Style Layout JavaScript DHTML



The Node

function randomColor() {
  r=Math.floor(Math.random() * 255).toString(16);
  g=Math.floor(Math.random() * 255).toString(16);
  b=Math.floor(Math.random() * 255).toString(16);
    alert("#"+r+g+b);
}
randomColor();