Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <link href='http://fullcalendar.io/js/fullcalendar-2.4.0/fullcalendar.css' rel='stylesheet' />
  6. <link href='http://fullcalendar.io/js/fullcalendar-2.4.0/fullcalendar.print.css' rel='stylesheet' media='print' />
  7. <script src='//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js'></script>
  8. <script src='//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
  9. <script src='http://fullcalendar.io/js/fullcalendar-2.4.0/fullcalendar.js'></script>
  10.  
  11. <!-- the code from the JavaScript tab will go here -->
  12.  
  13.  
  14. <!-- the code from the CSS tab will go here -->
  15.  
  16. </head>
  17. <body>
  18.  
  19. <div id='calendar'></div>
  20.  
  21. </body>
  22. </html>
  23.  
  24. jQuery(document).ready(function(){
  25.  
  26. jQuery('#calendar').fullCalendar({
  27. // put your options and callbacks here
  28. events:'apps/data.php'
  29.  
  30. })
  31. })
  32.  
  33. [{title : 'event1',start : '2015-08-01'}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement