View Single Post
Old 11-25-2012, 03:38 PM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,383
Thanks: 18
Thanked 350 Times in 349 Posts
sunfighter is on a distinguished road
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>
<script type="text/javascript">
var i = 1;
function thingy()
{
	var string = "fake stuff";
	document.getElementById("stuff").value = string.substr(0,i);
	i++;

}
</script>
</head>
<body>
<input type="text" id="stuff" onkeyup="thingy();"/>
</body>
</html>
sunfighter is offline   Reply With Quote