forked from ryangiglio/jquery-tweetMachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
27 lines (22 loc) · 1 KB
/
sample.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7 ie"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8 ie"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9 ie"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js ie"> <![endif]-->
<!--[if !IE]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>jQuery Tweet Machine sample</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ol class="tweets"></ol>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.2.min.js"><\/script>')</script>
<script src="js/tweetMachine.js"></script>
<script>
$('.tweets').tweetMachine('#puppy');
</script>
</body>
</html>