-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
18 lines (17 loc) · 961 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jtwitter test page</title>
<script type="text/javascript" src="js/jquery-1.4.min.js"></script>
<script type="text/javascript" src="js/jtwitter.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
</head>
<body>
<h1>jtwitter test page</h1> <hr />
<h2>Get lastest user tweet - note: twitter not include retweet</h2>
<label for="screen_name">Input twitter username: </label><input type="text" id="screen_name" value="sanglt" /> <label for="screen_limit">Limit: </label><input type="text" id="screen_limit" value="5" /> <button id="getUserTweet">Get tweet</button>
<ul id="tweetUserList"></ul>
</body>
</html>