nucLeaRsc2

Untitled

Jan 14th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1.  
  2. function changeColor() {
  3. if(arguments.length == 0){
  4. var randomColor = Math.floor(Math.random()*16777215).toString(16);
  5. document.getElementById("main").style.backgroundColor = "#"+randomColor
  6. }
  7. else{
  8. document.getElementById("main").style.backgroundColor = "#BC008D";
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment