View Single Post
Old 11-25-2012, 06:36 PM   PM User | #5
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,498
Thanks: 18
Thanked 361 Times in 360 Posts
sunfighter is on a distinguished road
Lets not even see where he's typing.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="">
<head>
<title>New document</title>

</head>
<body>
<input type="text" id="fakey">
<input type="text" style="border:1px solid red;position:absolute;left:-1000px;" id="stuff" onkeyup="thingy();">



<script type="text/javascript">
var i = 1;
document.getElementById('stuff').focus();
function thingy()
{
	var string = "fake stuff";
	document.getElementById("fakey").value = string.substr(0,i);
	i++;
}
</script>
</body>
</html>
sunfighter is offline   Reply With Quote