source: trunk/prototype/app/plugins/icalendar/icalendarBasic.html @ 5341

Revision 5341, 1.2 KB checked in by wmerlotto, 12 years ago (diff)

Ticket #2434 - Commit inicial do novo módulo de agenda do Expresso - expressoCalendar

Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
5<title>jQuery iCalendar</title>
6<style type="text/css">
7@import "jquery.icalendar.css";
8</style>
9<script type="text/javascript" src="jquery-1.4.2.js"></script>
10<script type="text/javascript" src="jquery.icalendar.js"></script>
11<script type="text/javascript">
12$(function () {
13        $('#basicICal').icalendar({start: new Date(2008, 1-1, 26, 11, 30, 00),
14                end: new Date(2008, 1-1, 26, 12, 45, 00),
15                title: 'Australia Day lunch',
16                description: 'A traditional barbeque for our big day',
17                location: 'On your local beach'});
18});
19</script>
20</head>
21<body>
22<h1>jQuery iCalendar Basics</h1>
23<p>This page demonstrates the very basics of the
24        <a href="http://keith-wood.name/icalendar.html">jQuery iCalendar plugin</a>.
25        It contains the minimum requirements for using the plugin and
26        can be used as the basis for your own experimentation.</p>
27<p>For more detail see the <a href="http://keith-wood.name/icalendarRef.html">documentation reference</a> page.</p>
28<p>Join us on Australia Day.</p>
29<div id="basicICal"></div>
30</body>
31</html>
Note: See TracBrowser for help on using the repository browser.