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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:44:15+00:00 2026-06-17T07:44:15+00:00

I am really confused here.. I am trying to get the values from a

  • 0

I am really confused here..
I am trying to get the values from a table and add those values to the div with class title using
append function and .text function.
The problem is that when I use the each function the last value in table gets appended and
the rest are skipped..
This is my code:

<script type="text/javascript">
    $(document).ready(function() {
        $('#nameGridView tr').each(function() {
            if (!this.rowIndex) return; // skip first row
            var productName = this.cells[0].innerHTML;
            $('.title').each(function (i, obj) {
                $('.title').html(productName);

            });

        });
    });

</script>

Please tell me how to iterate through each table and add simultaneously, like say for first div title, the first value from table gets appended and so on.
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-06-17T07:44:16+00:00Added an answer on June 17, 2026 at 7:44 am

    Use append() to append to an element. Also use .eq() to get the div with the same index as the row.

    <script type="text/javascript">
        $(document).ready(function() {
            var $title = $('.title');
            $('#nameGridView tr').each(function(i) {
                if (!this.rowIndex) return; // skip first row
                var productName = this.cells[0].innerHTML;
                $title.eq(i-1).append(productName);            
            });
        });
    
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting myself really confused trying to hide the next Div with a class
Really confused why the QR output using RcppArmadillo is different than QR output from
Really confused about what's going on here. I have a class defined as follows:
I'm really confused. I'm using Django 1.4 and I've been searching for this the
I'm really confused by all that caching stuff. I'm trying to setup mod_expires to
This one's really got me confused. I'm trying to do a visual basic console
Im trying to list the items in an array list from another class. I
I'm trying to get my iOS app to access files from my local apache
So I am doing a custom ol li list, and i really get confused
So, I am really balls confused here. I have no idea what I'm doing,

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.