Guest User

Untitled

a guest
Feb 18th, 2015
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.31 KB | None | 0 0
  1. <script type="text/javascript">
  2. now = new Date();
  3.  
  4. if ((now.getHours() > 9) && (now.getHours() < 23))
  5. {
  6.     document.write("<style>body{background:url(wall1.jpg);}</style>"); // Wallpaper from 9-23
  7. }
  8. else
  9. {
  10.     document.write("<style>body{background:url(wall2.jpg);}</style>"); // Wallpaper from 23-9
  11. }
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment