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

  • Home
  • SEARCH
  • 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 7025713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:00:47+00:00 2026-05-28T00:00:47+00:00

I have a form containing 2 input fields, one being hidden and a button.

  • 0

I have a form containing 2 input fields, one being hidden and a button. When I click on the button, I need to get and assign the value of the hidden form field within that same form to another div.

How do I iterate through the dom to get the value of that specific form field? I know the form input field name.

[EDIT] – I should have added that I have multiple forms with on the same page with the same elements, so I cannot use $(“input[name=’FORMELEMENT’]”); as I have a variety of the same form names. I need to find the value of the form element in the same form as where the button is located.

  • 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-28T00:00:47+00:00Added an answer on May 28, 2026 at 12:00 am

    Note, the input is type="text" to make it easier to see the change. This doesn’t affect it being a type="hidden" in the live example, as they both function essentially the same, except one is not visible.

    EDIT – Note, made a change after realizing the console.log()s weren’t working as expected.

    <form>
        <input type="text" name="myhidden" value="[placeholder]"/>
        <input type="button" name="mybutton" value="Click me!" rel="the value to copy 1"/>
    </form>
    <form>
        <input type="text" name="myhidden" value="[placeholder]"/>
        <input type="button" name="mybutton" value="Click me!" rel="the value to copy 2"/>
    </form>
    <form>
        <input type="text" name="myhidden" value="[placeholder]"/>
        <input type="button" name="mybutton" value="Click me!" rel="the value to copy 3"/>
    </form>
    
    $(document).ready(function(){
        $('input[name="mybutton"]').click(function(){
            var $hidden = $(this).parent('form').find('input[name="myhidden"]');
            console.log($hidden.val());
            $hidden.val($(this).attr('rel'));
            console.log($hidden.val());
        });
    });
    

    http://jsfiddle.net/WYJRm/4

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

Sidebar

Related Questions

I have a form containing several fields. One of them is a Datetime field.
I have a form containing only select fields, a submit button and a reset
I have a form in my HTML page, containing a label, an input field
I have the following form input field: <input type=text value= title=Enter item description name=description>
I have a form containing a list of input fields that the user populates
I have an application containing a form with five input fields. When the user
I have a HTML form containing checkboxes in the form of .. <input type=checkbox
I have a main form with a tab control containing multiple subforms. I need
I have form area in my view. If I click button A , I
I have form with one input for email and two submit buttons to subscribe

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.