forked from holman/boastful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
25 lines (24 loc) · 812 Bytes
/
example.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>boastful example</title>
<link rel="stylesheet" href="boastful.css" type="text/css" media="screen" title="boastful css" charset="utf-8">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.boastful.js"></script>
<script>
$(document).ready(function() {
$('#boastful').boastful({
location: 'http://zachholman.com'
// limit: 50
// empty_message: ''
});
});
</script>
</head>
<body>
<h1>Tweets about zachholman.com:</h1>
<div id="boastful"></div>
</body>
</html>