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 trialsooyeon jo
1,711 Pointsplease help me
The question is : Inside the click handler in app.js:
- Select the heading text with the class of .profile-name
- Use jQuery’s text() method to set the contents of .profile-name to the value of the input field
The error is: SyntaxError: app.js: Assigning to rvalue '$' (4:2)
I have no idea why this error occurs. please help me!
<!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() {
var newName=$('#name-input').val();
$('#profile-name').text() =newName.val();
});
1 Answer
sooyeon jo
1,711 Pointsthank you Janina!
Janina Diers
1,276 PointsJanina Diers
1,276 PointsHey, there are two mistakes in your code.
this should work: