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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T11:52:22+00:00 2026-06-09T11:52:22+00:00

I am trying to find all table cells containing FieldName=. I did this initially

  • 0

I am trying to find all table cells containing “FieldName=”. I did this initially with getElementsByTagName and then looped through testing with indexOf and it works just fine, getting 191 cells and then successfully testing for my target cells perfectly.

I then tried it with $(“td:contains(‘FieldName’)”); and it fails. I’ve tried backslashing the equals sign, double backslashing it and even removing it and I still get zero hits. The case is correct as it works with indexOf without need for converting to UC or LC.

Help! 🙂 Seriously, standard JS works so I’ll get by, but it’s really frustrating to not be able to use such a cool tool and not know why. Here’s my code – comment and uncomment to see the result of both approaches:

//var cells = document.getElementsByTagName("td");
var cells = $("td:contains('FieldName\=')");
alert(cells.length);
for (var i = 0; i < cells.length; i++) {
    if (cells[i].innerHTML.indexOf('FieldName=') > -1) {
        // do stuff here...
    }
}

I’m sure I’ll feel silly when someone spots my mistake, but that’s how we learn, eh? 🙂

A sample cell:

        <TD valign="top" class="ms-formbody" width="400px">
    <!-- FieldName="Title"
         FieldInternalName="Title"
         FieldType="SPFieldText"
      -->
        <span dir="none">
    <input name="ctl00$m$g_c2ed1f85_8eef_4759_817c_cd68435bd0a3$ctl00$ctl04$ctl00$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_c2ed1f85_8eef_4759_817c_cd68435bd0a3_ctl00_ctl04_ctl00_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Title" class="ms-long" /><br>
</span>


    </TD>
  • 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-09T11:52:23+00:00Added an answer on June 9, 2026 at 11:52 am

    The problem I see here is the difference between this line:

    cells[i].innerHTML
    

    and the way :contains works. :contains searches for a text string. It will ignore your HTML comments.

    The reason innerHTML is working is because it returns everything as a String, :contains will only return a string found within the innerText of this element and child elements.

    You could still use jquery in conjunction with plain JS to accomplish your goal like so:

    $("td").each(function () {
        // var this is the current element's DOM object
        if (this.innerHTML.indexOf("FieldName") != -1) {
            // do stuff
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to find all permutations of a string and sort them alphabetically. This
I'm trying to find all element that contains all words in a phrase after
I'm trying to find all href links on a webpage and replace the link
I'm trying to find all Users with an id greater than 200, but I'm
I am trying to find all ruby files in the project. However I want
I'm trying to find all instances of an advert on a website. The advert
Hi I am trying to find all js & css files in one find
I am trying to find all of the types in the Models namespace within
I am trying to find all floating number (could be in exponential forms with
I'm trying to find all words with a hash in front if they are

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.