Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7405385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:23:47+00:00 2026-05-29T05:23:47+00:00

What am I doing wrong here ( http://jsfiddle.net/dsqBf/2/ )? I’m trying to put the

  • 0

What am I doing wrong here (http://jsfiddle.net/dsqBf/2/)?

I’m trying to put the value of the clicked button into the text input. If you click any button, the value of the last button is inserted into the text input.

JavaScript code:

var theButtons = $(".button");
$(theButtons).each(function(index) {
    currentButton = $(this);
    buttonValue = currentButton.val();
    currentButton.click(function() {
        $("#theinput").val(buttonValue);
    });
});

Am I missing a concept I’m not aware of? Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:23:47+00:00Added an answer on May 29, 2026 at 5:23 am

    Prefix currentButton by var. Without it, the variable’s value will be assigned to a variable in the global scope, because you haven’t declared currentButton anywhere else. Consequently, the value of currentButton is changed to the value of the last button (because there’s only one variable).

    var theButtons = $(".button");
    theButtons.each(function(index) {
        var currentButton = $(this);
        var buttonValue = currentButton.val();
        currentButton.click(function() {
            $("#theinput").val(buttonValue);
        });
    });
    

    Other notes:

    • thebuttons is already a jQuery object, so you should not wrap it in $ again.
    • $("#theinput") does probably not change over time. So, I recommend to cache this variable.
    • The value of the current button, on the other hand, may change. I suggest to use this.value inside the click handler.
    • Instead of looping using each, you can also bind a click handler on the selector.

    Recommended code (demo: http://jsfiddle.net/dsqBf/11/)

    var $theButtons = $(".button");
    var $theinput = $("#theinput");
    $theButtons.click(function() {
        $theinput.val(this.value);
    });
    

    Prefixed jQuery-variables with $, because it’s the convention to do so. Because of $, you (and others) know that the variable is a jQuery object, which saves expensive debugging time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the jsfiddle I've been messing around with: http://jsfiddle.net/Hrs2a/ Basically, I'm trying to get
What am I doing wrong here? My use of the INTO clause seems to
What am I doing wrong here? I'm trying to get started with jQuery UI
What am I doing wrong here? I'm serializing a value, storing it in a
Someone has to be able to explain what I'm doing wrong here! I'm trying
I've put this information into a pastie, but repeated it here (pastie link http://pastie.org/private/4vprzwhllqv35egrf8jzwg
Take a look here: http://jsfiddle.net/Nvntm/1/ The Support navigation item actually disappears on Firefox (and
What am I doing wrong here? I am trying to get the background color
Here is example http://jsfiddle.net/FredyC/3pynD/2/ although not fully functional yet, i am not sure how
What am I doing wrong here? I am trying to extract from this list

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.