Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function init() {
  2. var cal = document.getElementById("calendar"),
  3. today = new Date;
  4.  
  5. new Calendar(cal, today);
  6. }
  7.  
  8. document.addEventListener("DOMContentLoaded", init);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement