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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:37:05+00:00 2026-05-26T15:37:05+00:00

window.onload = function(e){ cells = document.getElementsByName(‘assetID’); for(j = 0; j < cells.length; j++) cells[j].style.display

  • 0
window.onload = function(e){ 
     cells = document.getElementsByName('assetID');
     for(j = 0; j < cells.length; j++) cells[j].style.display = 'none';
     cellsBMPartNo = document.getElementsByName('BMPartNo');
     for(j = 0; j < cellsBMPartNo.length; j++) cellsBMPartNo[j].style.display = 'none';
     defaultAssetTableValues();
}

I am simply hiding table rows by name.
See line 2 and 4 .
It works fine in Firefox but does not in IE.
Am I missing something ?

  • 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-26T15:37:05+00:00Added an answer on May 26, 2026 at 3:37 pm

    IE does not see elements added to the document dynamically (through the DOM) with getElementsByName. Are your elements created that way?

    There are other problems with that method in different versions of IE. As a workaround, you could use getElementsByTagName('td') and then check to see if the name attribute matches the one you are looking for in a for-loop, iterating through the array of elements.

    Here’s a “IE-fixed” version of getElementsByName:

    function getElementsByName2(tag, name) {
        var els = document.getElementsByTagName(tag);
        var arr = [];
        for (var i = 0; i < els.length; i++) {
            if (els[i].getAttribute("name") == name) {
                arr.push(els[i]);
            }   
        }
        return arr;
    }
    

    And you would use it like so (for elements in table cells with name ‘assetID’):

    var cells = getElementsByName2('td', 'assetID');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code, window.onload = function(){ if($('div.colorPicker').length){ $(div.colorPicker).click(function(){ if($('.field_sku').length){ code = $(this).children('.tmpSKU').html(); if(!code
This is my script : window.onload = function (){ var title = document.getElementsByTagName('h1')[0].id =
<!DOCTYPE html> <html> <head> <title> New Document </title> <script type=text/javascript> window.onload = function ()
I have this function in my head: <head> window.onload = function(){ var x =
function icPageInit() { $(icImgDiv + icAlternate()).setOpacity(0); return true; } window.onload = icPageInit; This piece
I am having trouble with the window.onload and document.onload events. Everything I read tells
Having a bit of an issue please see the following code: window.onload = function
How to rewrite the code using jQuery? <script type=text/javascript> window.onload = function(){ var array
I have window.onload = function() { $('form').submit(function() { return false; }); }; Inside of
here is my code: window.onload = function(){ google.load(visualization, 1, {packages:[corechart]}); google.setOnLoadCallback(function(){ alert(Message); }); }

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.