blob: 6a2dbbd0e74ebb59c7f388527918f4885d283e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="../js/jquery.meetingtools.js"></script>
<link href="../css/jquery.meetingtools.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function() {
$("#meetings").meetingtools({tags: 'kaka'});
});
</script>
</head>
<body>
<h1>Meetings...</h1>
<div id="meetings"/>
</body>
</html>
|