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 6883863
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:26:08+00:00 2026-05-27T05:26:08+00:00

i am creating a few input fields in a foreach loop: <?php foreach($this->results as

  • 0

i am creating a few input fields in a foreach loop:

<?php foreach($this->results as $value){?>
<td><a href="$" class="buttonDetails">View Detail</a>
<input name="processor" id="processor" type="text" value="<?php echo $value['processor']; ?>">
<input name="auth_code" class="auth_code" type="hidden" value="<?php echo $value['auth_code']; ?>"></td>
<? } ?>

is will give me something like:

<td>
<a href="$" class="buttonDetails">View Detail</a>
<input name="processor" class="processor" type="text" value="19">
<input name="auth_code" class="auth_code" type="text" value="4">
</td>
<td>
<a href="$" class="buttonDetails">View Detail</a>
<input name="processor" class="processor" type="text" value="9">
<input name="auth_code" class="auth_code" type="text" value="11">
</td>
...

then i try to get the values:

$('.buttonDetails').live("click", function (){
    var processor = $('.processor').val();
    alert(processor);

    $.ajax({
            type: 'POST',
            dataType: 'json',
            url: '/decline/list',
            async: false,
            data: { 
                processor: processor,
                processor: auth_code
               },
            success: function(json) {
                $('#details').html(json.processor);
            }
    });
    return false;
});

the problem i have is that my alert gets the same number (usually the first value from the first input) when i click on any link.

any ideas ho to fix this? i’ve tried replacin classes with id’s and ‘click’ with ‘live’ but still nothing

edit:

i believe i need to differentiate the classes so he links will know what value to pull..??

edit: what if i want to get the ‘auth_code ‘ also?

  • 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-27T05:26:09+00:00Added an answer on May 27, 2026 at 5:26 am

    Try:

    $('.buttonDetails').live("click", function (){
        var processor = $(this).next(".processor").val();
        alert(processor);
        /* snip */
    });
    

    Use next to get the input next to the link that was clicked.


    Update (due to comment).

    You could find auth_code similarly using nextAll instead:

    var auth_code = $(this).nextAll(".auth_code").val();
    

    Also, are you sure you’re supplying the correct values to your AJAX call? It looks like you’re specifying processor twice. The first value specified for processor will be overwritten.

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

Sidebar

Related Questions

I am creating a framework in PHP and need to have a few configuration
I'm creating a custom jQuery plugin to add a few images above an input
I am creating few pages (including login page) which should only be accessible by
I'm creating a few web forms that have areas to them. Are fieldsets viable
Having worked with Classic ASP for about 2 years now by creating a few
I'm creating quite a few SSIS packages to drive document composition (e.g. utility bills,
I am creating a web application which has a few management screens, where a
I am creating small django application which holds some few questions (and answers for
I'm creating a Windows Console application written in VB.NET and I have a few
I've added a few components to the NavigationBar in an app I'm creating. The

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.