Try this:
Code:
<!doctype html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<title> </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<input id="input_32_1" onmouseover="this.value='';document.getElementById('test').innerHTML=''">I'm going to the
<span id="test"></span>
<script>
$("#input_32_1").keyup(function() {
document.getElementById('test').innerHTML=''; $("#test").text($("#input_32_1").val());
});
</script>
</body>
</html>
Bookmarks