Viptelekom
Technical User
Dear forum members,
I am looking for a solution to change the UserName based on the drop down list or similar which i predefinie in the html code.
The original widget code is this one :
My idea is to user a drop down list like this one to change the username:
Any suggestion is welcome.
Thank you,
Gergely
I am looking for a solution to change the UserName based on the drop down list or similar which i predefinie in the html code.
The original widget code is this one :
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="CoffeeCup HTML Editor ([URL unfurl="true"]www.coffeecup.com)">[/URL]
<meta name="created" content="P, 10 febr. 2012 16:53:48 GMT">
<meta name="description" content="">
<meta name="keywords" content="">
<title></title>
<!--[if IE]>
<script src="[URL unfurl="true"]http://html5shim.googlecode.com/svn/trunk/html5.js"></script>[/URL]
<![endif]-->
</head>
<body>
<div align="center">
<script charset="utf-8" src="[URL unfurl="true"]http://widgets.twimg.com/j/2/widget.js"></script>[/URL]
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 'auto',
height: 591,
theme: {
shell: {
background: '#333333',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#eb0707'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
behavior: 'all'
}
}).render().setUser('UserName').start();
</script>
</div>
</body>
</html>
My idea is to user a drop down list like this one to change the username:
Code:
<select>
<option value="Viptelekom">Viptelekom</option>
<option value="Twitter">Twitter</option>
</select>
Any suggestion is welcome.
Thank you,
Gergely