Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
james rochabrun
Courses Plus Student 22,726 PointsSolution for code challenge
//Show Prompt Window and store value
var fullName = prompt("What is your full name?");
//Select Input with the id of #fullName
var first = $("#fullName");
//Insert value in to full name input
$("#fullName").val(fullName);
Thomas Workman
7,173 PointsThomas Workman
7,173 PointsNot really sure what you're needing here. Can you please try to clarify your question or what it is specifically you are trying to achieve?
If this helps you, you are storing whatever the user enters into the prompt in a variable of fullName.
For example: