FoxChiffa,
вы что-то не договариваите ...
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script>
function myFunction()
{
for (var i=1; i<4; i++)
{
var str = "name" + i;
var x = document.getElementById(str).value;
var str2 = "pr" + i;
document.getElementById(str2).innerHTML = x;
}
}
</script>
</head>
<body>
<input type="text" id="name1" oninput="myFunction()" value="1">
<input type="text" id="name2" oninput="myFunction()" value="2">
<input type="text" id="name3" oninput="myFunction()" value="3">
<p id="pr1"></p>
<p id="pr2"></p>
<p id="pr3"></p></body>
</html>