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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:29:10+00:00 2026-05-23T07:29:10+00:00

Another newbie question from me. Just checking whether my code below is possible. I.e

  • 0

Another newbie question from me.

Just checking whether my code below is possible. I.e creating a new array consisting of ‘document.GetElementById’s’. As i’m fairly new to javascript my code is generally a bit long winded, so please forgive the messiness.

The code below is bringing up the error ‘style.display’ is ‘null’ or not an object.
Can anyone see anything obvious i’m missing or doing wrong?

function Test(){

if(document.getElementById('inClient').value !=="FormViewer"){

    var visible =new Array("document.getElementById('personal2').value","document.getElementById('change_hours2').value");
    var change = new Array("document.getElementById('personal').value","document.getElementById('change_hours').value");

    for (var i=0; i <visible.length; i++) {
        if(visible[i]!==""){
            change[i].style.display = "block"
         }
      }
   }
}

Basically if the hidden fields (‘personal2’ etc) are blank i want the div / section (‘personal’ etc) to remain hidden but if it contains text then i want to show the section.

Thanks in advance

  • 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-23T07:29:10+00:00Added an answer on May 23, 2026 at 7:29 am

    You are adding strings to your array instead of references to DOM elements. Remove the quotes and the value property and it will work. You have to check the value within the iteration.

    function Test(){
    
    if(document.getElementById('inClient').value !=="FormViewer"){
    
        var visible =new Array(document.getElementById('personal2'), document.getElementById('change_hours2'));
        var change = new Array(document.getElementById('personal'), document.getElementById('change_hours'));
    
        for (var i=0; i <visible.length; i++) {
            if(visible[i].value != ""){
                change[i].style.display = "block"
             }
          }
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In another question on SO I answered with code like the one below and
I've got another newbie question. I've written a piece of code that converts a
In another question, Mark speaks highly of IDEs, saying some people still just dont
I'm really new to VSTO so sorry if this is a newbie question. I'm
Sorry another newbie question that I couldn't seem to find an answer to on
This is a newbie question... I receive data from the user via a form,
again a total newbie question from me about Haskell, and Leskah. (First, a subjective
Might be a newbie question. I have a code line like this: <div class=template
Another .net newbie question I created a class that inherits System.Web.UI.Page with the intention
Yes all, another newbie question! I'm doing some maintenance work on an app I

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.