1
2
<html>
3
<body>
4
<p>Manipulate the entire text in the form based on the onchange for functionality.</p>
5
Input_Text <input type="txt1" name="txt2" value="Welcome" onchange="func_v(this.value)">
6
<script>
7
function func_v(val)
8
{
9
alert("Input_val_got_changed for transformation to manipulate: " + val);
10
}
11
</script>
12
</body>
13
</html>