-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathindex.html
40 lines (32 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>widget</title>
<!-- css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/ui.contacts.css">
</head>
<body>
<!-- contactList -->
<div id="contactList"></div>
<!-- jquery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script>
<!-- jquery ui -->
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script>window.jQuery.ui || document.write('<script src="js/libs/jquery-ui-1.8.17.custom.min.js"><\/script>')</script>
<!-- widget -->
<script src="js/ui.contacts.js" type="text/javascript"></script>
<!-- init -->
<script type="text/javascript">
$(function() {
$.getJSON("contacts.json", function(json) {
// contact widget
$('#contactList').contacts({data : json});
});
});
</script>
</body>
</html>