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

JavaScript

Solution 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);

Not 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:

  1. Open you JS console and enter var fullName = prompt("What is your full name?");
  2. Hit enter
  3. Enter your name in the prompt window
  4. In the JS console, type fullName
  5. The console will return the the data you have stored in the fullName variable