jQuery | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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);

29th Sep 2017, 12:36 AM
Samir Abd Elaaty Abd Elghafour Ramadan
Samir Abd Elaaty Abd Elghafour Ramadan - avatar
5 Answers
+ 4
Check courses in SL var v = $("#name").val(); $("#txt").text(v);
29th Sep 2017, 4:53 AM
Daniel
Daniel - avatar
+ 6
are you try to get solution for your exercises?
29th Sep 2017, 1:15 AM
Daniel
Daniel - avatar
+ 1
thank you very mach😀
29th Sep 2017, 11:07 AM
Samir Abd Elaaty Abd Elghafour Ramadan
Samir Abd Elaaty Abd Elghafour Ramadan - avatar
0
no
29th Sep 2017, 1:47 AM
Samir Abd Elaaty Abd Elghafour Ramadan
Samir Abd Elaaty Abd Elghafour Ramadan - avatar
0
var v = $("#name").val(); $("#txt").text(v);
24th Mar 2018, 4:26 PM
Mahnoor Shahzad
Mahnoor Shahzad - avatar