[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

02/10/2006 at 01:37PM PST, ID: 21732373
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.9

Show/Hide image or content based on form drop down choice

Asked by mrslate1 in JavaScript

Tags: javascript, hide, image, show

I have the need to create a small form with a select box with three choices. Choice 1, choice 2 choice3.

Choice 1 shows content in a specified area and hides choice 2,3 , Choice 2 Hides Choice 1 and 3 and shows choice 2, Choice 3 shows Choice three content and hides choice 1 and 2.

Hope this makes sense. I have come close but my content keeps overlapping when the choices are changing.

<html>
<head>
      <title>Untitled</title>
</head>

<body>
<form name="form1" method="post" action="">
  <div id="Layer1" style="position:absolute; left:200px; top:150px; width:455px; height:131px; z-index:1; visibility: hidden">
  Content 1 </div>
  <div id="Layer2" style="position:absolute; left:200px; top:150px; width:454px; height:134px; z-index:2; visibility: hidden">
    Content 2</div>
  <div id="Layer3" style="position:absolute; left:200px; top:150px; width:454px; height:134px; z-index:3; visibility: hidden">
    Content 3 </div>
 
  <p>&nbsp;</p>
  <p>
    <select name="type" onchange="Javascript:chklayer(this.value);">
      <option value="0">Please Select:</option>
      <option value="1">Add a Report</option>
      <option value="2">Manage a Report</option>
        <option value="3">File Upload snd Report Usage</option>
    </select>
  </p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
</form>
            <script language="JavaScript">

function chklayer(v) {
     
     if (v == "0") {
          document.getElementById(layershow).style.visibility = 'hidden';
          document.getElementById(layerhide).style.visibility = 'hidden';
          return false;
     } else if (v == "1") {
          layershow = "layer1";
          layerhide = "layer2";
              layerhide = "layer3";
      
     } else if (v == "2") {
          layerhide = "layer1";
              layershow = "layer2";
          layerhide = "layer3";
      
     } else if (v == "3") {
          layershow = "layer3";
               layerhide = "layer1";
              layerhide = "layer2";
             
     }
     document.getElementById(layershow).style.visibility = 'visible';
     document.getElementById(layerhide).style.visibility = 'hidden';    
}
</script>
</body>
</html>

What is wrong? Thanks!
 
Loading Advertisement...
 
[+][-]02/10/06 02:08 PM, ID: 15927196

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]02/10/06 02:12 PM, ID: 15927255

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/10/06 02:58 PM, ID: 15927674

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Tags: javascript, hide, image, show
Sign Up Now!
Solution Provided By: Zvonko
Participating Experts: 2
Solution Grade: A
 
 
[+][-]02/11/06 04:12 PM, ID: 15932648

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/11/06 11:09 PM, ID: 15933759

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/12/06 01:49 AM, ID: 15934057

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091028-EE-VQP-87