- 1
jQuery
Fill in to get the value of the form field with id="name" and set it as the text of the paragraph with id="txt". var v = $("#name"). ____ ; $("#txt").text(v);
5 Answers
+ 4
Check courses in SL
var v = $("#name").val();
$("#txt").text(v);
+ 6
are you try to get solution for your exercises?
+ 1
thank you very machđ
0
no
0
var v = $("#name").val();
$("#txt").text(v);