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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:58:09+00:00 2026-06-11T20:58:09+00:00

<style type="text/css"> #second{ display:none; } </style> On mouse event I want to pass id’s

  • 0
<style type="text/css">
#second{
 display:none;
}
</style>

On mouse event I want to pass id’s of div which is not related to current element from where I am calling the function.

<div id="first">
     ....
     ....
</div>
<div id="second">
     ....
     ....
</div>

<input type="image" src="..." id="notrelated"
 onClick="f('first','second')"
 />

JavaScript

<script type="text/javascript" language="javascript">
function f(first,second){
document.getElementById(first).style.display='none';
document.getElementById(second).style.visibility='visible';
}
</script>

The above function thus helps in hiding and make the div visible which is based on mouse event on image.

I followed these above steps,after making visibility ‘visible’ it wont show because I’ve made div second display none and I tried making the following changes which results in second div occupying space which I don’t prefer:

<style type="text/css">
#second{
visibility:hidden;
}
</style>
  • 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-11T20:58:10+00:00Added an answer on June 11, 2026 at 8:58 pm

    If I got your question, you just want to pass your div ids in the function. So you can easily pass it in any function.

    Like

    <input type="image" src="..." id="notrelated" onClick="Toggle('first','second')" />
    

    and your js function will work

    function Toggle(first,second){
       document.getElementById(first).style.visibility='hidden'
       document.getElementById(second).style.visibility='visible'
    }
    

    But If you want that only passing these id you want to toggle these, then you should change your function to like

    function Toggle(first,second){
       var firstDiv = document.getElementById(first);
       var secondDiv = document.getElementById(second);
       firstDiv.style.visibility= firstDiv.style.visibility == 'hidden'?'visible':'hidden';
       secondDiv.style.visibility= firstDiv.style.visibility == 'hidden'?'visible':'hidden';
    }
    

    You can check this DEMO

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

Sidebar

Related Questions

My css for ul is: ul {list-style-type: none; margin:auto; border-top: 1px solid #0093a7; border-bottom:
I have some CSS like this: #navBar ul { list-style-type:none; margin:0; padding:0; } #navBar
bullets from list-style type not showing up. Not only does the CSS, in no
I have this: <ul class=deposit style=float:left;list-style-type:none;> <a href=javascript:void(0) id=inc><li class=first>+</li></a> <a href=javascript:void(0) id=dec><li class=second>-</li></a>
I want to obtain the "base" property from a gtkstyle, which is a GdkColor
Why is there no list-style infinite type error when I define something like this
How to set the default style for a type in code-behind e.g. for: <ScaleTransform
I tried to create a Style for DataGridTextColumn with the following code <Style TargetType={x:Type
<Style x:Key=MyButton TargetType={x:Type Border}> <Style.Resources> <Style TargetType={x:Type TextBlock}> <Setter Property=FontSize Value=24/> <Setter Property=Foreground Value={StaticResource
What is the difference between: <Style TargetType={x:Type Border}> and: <Style TargetType=Border> When and why

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.