02.
1:<input type=
"text"
id=
"first"
value=
"sweetie"
/><br />
03.
2:<input type=
"text"
id=
"second"
value=
"dream"
/><br />
04.
3:<input type=
"text"
id=
"third"
/><br />
05.
<script>
06.
var
first=$(
"#first"
).val().slice(0,5);
07.
var
second=$(
"#second"
).val().slice(1,5);
08.
$(
"input#third"
).val(first+
' c'
+second);
09.
</script>