Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <div class="contentCell" id="contentCellCenter1 potd" style="width:90%">
  2.  
  3. <br />
  4.  
  5. <h1>Today:</h1>
  6.  
  7. <p><img width="80%" height="" id="dailyPic" border="10px solid black" /></p>
  8.  
  9. <script>
  10. var today = new Date();
  11. var dd = today.getDate();
  12. var mm = today.getMonth()+1; //January is 0!
  13.  
  14. today = mm+'/'+dd;
  15. image = 'calendar/'+today+'.jpg'
  16. text = 'calendar/'+today+'.txt'
  17. document.getElementById("dailyPic").src=(image);
  18. </script>
  19.  
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement