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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T09:11:08+00:00 2026-06-09T09:11:08+00:00

I have two elements, the first one is the default to print on screen

  • 0

I have two elements, the first one is the default to print on screen

<input id=post-category value="first">

and the other is this, which will only show if some onclick was made and of course the first element must show off

<select id=cat-sel ><option>second</option></select>

UPDATED
I tried this code

el = document.getElementById("post-category");
el.style.visibility = "hidden";

el2 = document.getElementById("cat-sel");
el2.style.visibility = "visible";

but the problem here is, the 2nd element is indented. because it escapes the space for the 1st element. I don’t like that, I wanted them to be on the same position

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

    Change to

    el = document.getElementById("post-category");
    el.style.display = "none";
    
    el2 = document.getElementById("cat-sel");
    el2.style.display = "block";
    

    since visible/hidden does not remove the space the element takes up on the page

    You need to set display:none on the field you need to hide initially

    Assuming a checkbox have

    window.onload=function() {
      document.getElementById("categoryCheckbox").onclick=function() {
        var chk = this.checked;
        document.getElementById("post-category").style.display = chk?"none":"block";
        document.getElementById("cat-sel").style.display = chk?"block":"none";
      }
    }
    

    PS: A little more code is needed for the show/hide to survive a reload by the way…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two <select> elements. The first one contains countries (e.g. USA, Canada, England,
I have two lists. At start only the first one has visible elements, the
I have two processes (producer/consumer). The first one puts elements in a Collection, the
I have two label elements. I want the first one to be shown all
For example, I have two elements in an enum. I would like the first
I have two kind of elements <i rel=tooltip class='icon-ok'> <i title=Teste class='icon-info'> The first
I have two div -elements, the top one has the height of 40% and
so I have two arrays. one of them looks like this (it's values or
I have two divs, one that holds some stuff and the other with all
So I have input of a list with elements like this: calendar year 2008

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.