File: index.html

Recommend this page to a friend!
  Classes of Fabio Elisio Melo Nunes   JavaScript Calendar plugin   index.html   Download  
File: index.html
Role: Example script
Content type: text/plain
Description: sample file
Class: JavaScript Calendar plugin
jQuery plugin to show a month calendar on a page
Author: By
Last change: primeiro commit

primeiro commit
Date: 2 years ago
Size: 616 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html lang="pt-br"> <head> <title>GJCalendar jquery</title> <meta charset="utf-8" > <link href="css/style.css" rel="stylesheet" /> <script src="js/jquery-1.8.3.min.js"></script> <script src="js/gjcalendar.js"></script> </head> <body> <div id="content"> <header> <h1>GJCalendar Jquery V.1.0</h1> </header> <section> <div id="calendarView"></div> </section> </div> <script type="text/javascript"> $.gjcalendar.viewCalendar("calendarView"); </script> </body> </html>