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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:12:53+00:00 2026-06-08T17:12:53+00:00

I have encountered this code $(#search).keyup(function(){ var val = $.trim(this.value).toLowerCase(); $(table > tbody >

  • 0

I have encountered this code

$("#search").keyup(function(){
  var val = $.trim(this.value).toLowerCase();
   $("table > tbody > tr:gt(0) ").hide();

   if(val.length){
     $("table > tbody > tr:gt(0) > td").filter(function(){
       return this.innerHTML.toLowerCase().indexOf(val) >=0;
     }).parent().show();
   } else $("table > tbody > tr:gt(0)").show();
});

For Querying a a table in jQuery. here’s the HTML markup

<p>
  <input id = "search" type = "text">
</p>
<table id ="accounts">
  <tr>
    <th>Username</th>
    <th>Password</th>
  </tr>         
  <tr>
    <td>Metasm</td>
    <td>password1992</td>
  </tr>
  <tr>
    <td>superadmin</td>
    <td>adminpassword</td>
  </tr>         
  <tr>
    td>skyrocketeer</td>
    <td>thejetsons</td>
  </tr>
</table>

Basically it works. but the I am very confused with regards to the jQuery code.

My Question: in this part of code

$("table > tbody > tr:gt(0) > td").filter(function(){
  return this.innerHTML.toLowerCase().indexOf(val) >=0;
}).parent().show();

What does this part specifically do? and what does it return?

  • 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-08T17:12:54+00:00Added an answer on June 8, 2026 at 5:12 pm
    • $("table > tbody > tr:gt(0) > td") – This lines of code states that you want all <td> elements within a <table> element that are in a <tbody> element, who’s <tr> element’s index is greater than 0 (ie – skip the first row. gt() is simple Greater Than). The > selector states that we only want elements in the first level of children – we don’t want to drill down further than the first set of child elements.

    • The .filter() function will reduce the set of matched elements to those that match the selector or pass the function’s test.

    • The conditional statement here is looking for a certain index of a search string val, within the innerHTML of each element.
      this.innerHTML.toLowerCase().indexOf(val) >=0

    So what this is saying (remembering that we are iterating over all the elements we found from our first selector) is that we are looking for an occurance of the string val within the innerHTML of the element. The innerHTML is also being passed through the toLowerCase() function, who’s name suggests is function – converts all characters to their lowercase form.

    Phew…Now after all this we are left with a certain list of elements. Elements that met all of our specifications above. For each of these elements, the code will locate their parent (remember we are talking about <td> elements, so their parents should be <tr>) with the .parent() function and display them on screen with the .show() function.


    For the first selector – $("table > tbody > tr:gt(0) > td"), I find sometimes its easier to read it backwards (in your mind) to understand the hierarchy…

    Return the –

    1. I’m looking for <td> elements,
    2. that are inside <tr> elements (but not the first one),
    3. that are inside a <tbody> element
    4. that all reside within a <table> element.

    Now for some sample input and output:

    • Given the value of val is "jet", the function would display the last <tr> – the one with the string – thejetsons.
    • Given the value of val is "password", the function would display the two <tr> elements in the middle. The ones that contain "password1992" and "adminpassword".
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I encountered something that I can't understand. I have this code: cout << f1
I have just encountered this following code: public class TestFinally { public static void
I have encountered this piece of code that is supposed to determine the parent
I have encountered this topic lately and couldn't understand why they are needed. Can
I have encountered this problem today and I don't have an explanation for it.
I have encountered this error when trying to delete a cell, using a custom
I have browsed lift's MegaProtoUser and encountered this construction: ??(Last Name) . Can anyone
While going through some tutorials, I have encountered lines such as this: ((IDisposable)foo).Dispose(); Ignore
How to write this in C#.NET, I have not been encountered using the ^
I've encountered many MATLAB codes which have a %#ok<SAGROW> comments. This comment is used

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.