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 trialKeytron Brown
15,828 PointsConfused
Its asking to me to set it equal to the value of the input field.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<h2 class="profile-name">Treasure Porth</h2>
<p class="profile-text">I am a web developer!</p>
<label>Change name:<input id="name-input" type="text"></label>
<button>Change</button>
<script
src="jquery-3.2.1.min.js"></script>
<script src="app.js"></script>
</body>
</html>
$('button').click(function() {
// Write code here
const newName = $('#name-input').val();
$('.profile-name') = newName.text();
});
1 Answer
Yahav Rosner
Full Stack JavaScript Techdegree Student 6,415 PointsThis should work:
$('button').click(function() {
// Write code here
const newName = $('#name-input').val();
$('.profile-name').text(newName);
});
Miguel Valenzuela
1,254 PointsMiguel Valenzuela
1,254 PointsCan you elaborate more on your confusion? Essentially the users inputs something, and cons newName sets newName to the value submitted in the input field. In this case, it starts off stating that the name of the Developer is Treasure Porth, but you want to change that to possibly yourself. So you input your own name, hit submit, then it should say "Keytron Brown" "I am a web developer". Assuming you put Keytron Brown into the input field.