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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:25:20+00:00 2026-05-23T08:25:20+00:00

I am using JavaScript with jQuery. I have script as; $(document).ready( function() { $(‘.ccc’).click(function(index)

  • 0

I am using JavaScript with jQuery. I have script as;

$(document).ready( function() {
$('.ccc').click(function(index) {
  var $title = $(this);
  var $flag =  $title.parent().prev().children('.aaa').children('.bbb');
  var flag = $flag.text();
  alert(flag);
});
});

used with my table;

<table style="width: 100%">
  <tr>
    <td rowspan="2">x</td>
    <td class="aaa">1<span class="bbb">q</span></td>
    <td class="aaa">2<span class="bbb">w</span></td>
    <td class="aaa">3<span class="bbb">e</span></td>
    <td class="aaa">4<span class="bbb">r</span></td>
    <td class="aaa">5<span class="bbb">t</span></td>
    <td rowspan="2">x</td>
  </tr>
  <tr>
    <td class="ccc">6</td>
    <td class="ccc">7</td>
    <td class="ccc">8</td>
    <td class="ccc">9</td>
    <td class="ccc">10</td>
</tr>
</table>

The table has two rows (may contain more rows with same repeated pattern). The script is suppose to alert value on the cell just above the cell, class="bbb" I click class="ccc". But instead, it displays data in all cells above that having class="bbb". How can I solve this?

You can see my Fiddle here.

  • 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-23T08:25:21+00:00Added an answer on May 23, 2026 at 8:25 am

    If I understood you correctly, then you can do it as follows:

    Get the index of the currently clicked cell:

    var index = $(this).index();
    

    Then select the cell with this index + 1 from the previous row:

    $('.ccc').click(function() {
      var index = $(this).index();
      var $flag =  $(this).parent().prev().children().eq(index + 1).children('.bbb');
      alert($flag.text());
    });
    

    Updated DEMO

    Reference: index, eq

    Update: In fact, if every table cell only contains one .bbb element, you can also do:

    var $flag =  $(this).parent().prev().find(`.bbb`).eq(index + 1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a div which in jquery's document ready I append - using $(#div
I've been using various javascript frameworks including mootools, jquery, prototype and scriptaculous and have
I have some javascript that I'm trying to retool using jQuery to learn the
I am using JavaScript, jQuery and PHP. How do I limit the JavaScript function
I am using jQuery and JavaScript, I need to call the jQuery function inside
I need some assistance with some javascript/jquery I have put in place. The function
I've rewritten my family web site using JavaScript (JQuery) making Ajax calls to PHP
I am using JavaScript and jQuery. My main file has My.js and Ajax. My.js
I want to handle F1-F12 keys using JavaScript and jQuery. I am not sure
How do you detect which form input has focus using JavaScript or jQuery? From

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.