Advertisement
virtualideaz

IfExample.html

Apr 4th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.     <title>IfExample javascript</title>
  4.         <script>
  5.         //this script writes good morning greetings if the time is less than 1pm
  6.        
  7.         var date =  new Date();
  8.         var time = date.getHours();
  9.        
  10.         if(time < 13) {
  11.             document.write("Good Morning!!");
  12.         }
  13.         else {
  14.             document.write("Good Afternoon!!");
  15.         }
  16.     </script>
  17. </head>
  18. <body>
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement