-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
37 lines (36 loc) · 1016 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Twitter JS</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="" />
<link href="twcss.css" media="all" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<script src="jquery-1.7.1.min.js"></script>
<script src="twjs.js"></script>
<script>
function reloadTweets()
{
var us = $('#twtuser').val();
user = us;
$('#twtbox_body').html('');
twtjs_loadTweets(us);
}
</script>
</head>
<body>
<div style="width:285px; margin:0 auto; padding:10px 20px">
<input name="twtuser" id="twtuser" value="f0vela"><input type="button" value="Cargar" onclick="reloadTweets();"/>
</div>
<div id="twtbox">
<div id="twtbox_head">
<div id="twtbox_head_name">Tweets</div>
<div id="twtbox_head_subname">Mis Tweets</div>
</div>
<div id="twtbox_body"></div>
<div id="twtbox_footer"></div>
</div>
</body>
</html>