-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontainer.html
More file actions
32 lines (29 loc) · 843 Bytes
/
Copy pathcontainer.html
File metadata and controls
32 lines (29 loc) · 843 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>libZotero Examples</title>
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
</head>
<body>
<header role="banner">
<h1>libZotero Examples</h1>
</header>
<nav>
<ul>
<li><a href="inpage.php">Load Zotero data within a page</a></li>
<li><a href="container.html">Load a frame the load Zotero data into it</a></li>
<li><a href="customizefeed.php">Customize a Zotero items feed</a></li>
<li><a href="createitem.php">Create Item</a></li>
</ul>
</nav>
<div id="feedContent">
</div>
</body>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#feedContent").load('./embed.php?content=bib&style=apa&limit=5');
});
</script>
</html>