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 jQuery Basics Introducing jQuery Getting Values from Form Fields

Taig Mac Carthy
Taig Mac Carthy
8,139 Points

Why is this not working with arrow functions?

The exercise appears to be correct when I write

$('button').click(function() {
    const newName = $('#name-input').val();
});

However, I want to use arrow functions, which to my understanding should be

$('button').click( () => {
    const newName = $('#name-input').val();
});

But when I click on submit, it acts as if there was no JS code.

What am I missing? Thanks!

index.html
<!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>
app.js
$('button').click( () => {
    const newName = $('#name-input').val();
});

1 Answer

Steven Parker
Steven Parker
229,063 Points

This would be fine in your own code, but the challenge instructions ask you to add code "Inside the provided click handler...", so they expect the provided code (including the function declaration) not to change.