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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:36:27+00:00 2026-05-13T22:36:27+00:00

Made this nice little loop for hiding and showing div’s, works as a charm

  • 0

Made this nice little loop for hiding and showing div’s, works as a charm in firefox and opera, but IE, safari and chrome say’s no….
So my question is; why?

    function theme(nr){
  document.getElementById(nr).style.display = "block";
  for (i = 0;i <= 28; i++) {
   if (i != nr) {
    document.getElementById(i).style.display = "none";
   }    
  }
 }

HTML:

<select id="subject" name="subject">
<option value="no" selected>Velg tema</option>
<option value="value0" onChange="javascript:theme(0)" onClick="javascript:theme(0)" onFocus="javascript:theme(0)">value0</option>
<option value="value1" onClick="theme(1)">value1</option>
</select>

<div class="tips" id="theme_0" name="theme_0">
<div class="tipsLabel">Tips:</div>
<div class="tipsContent">
    lorem ipsum
</div>

<div class="tips" id="theme_1"  name="theme_1">
<div class="tipsLabel">Tips:</div>
<div class="tipsContent">
    more lorem ipsum
</div>

and so on…

Thanx:)

  • 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-13T22:36:27+00:00Added an answer on May 13, 2026 at 10:36 pm

    You cannot use id s like this. Id should not start with a number.

    Change your code to something like this. Append a string in front of the numbers for the elements.

    function theme(nr){
      document.getElementById("myElem_" + nr).style.display = "block";
      for (i = 0;i <= 28; i++) {
       if (i != nr) {
        document.getElementById("myElem_" + i).style.display = "none";
       }    
      }
     }
    

    From Basic HTML data types

    ID and NAME tokens must begin with a
    letter ([A-Za-z]) and may be followed
    by any number of letters, digits
    ([0-9]), hyphens (“-“), underscores
    (“_”), colons (“:”), and periods (“.”)

    Edit

    Assign the change event handler to the select instead of option.

    <script>
    function theme(elem)
    {
        var selectedVal = elem.value;
    
        if ( document.getElementById("theme_" + selectedVal) != null )
        {
            document.getElementById("theme_" + selectedVal).style.display = "block";
        }
    
        for (i = 0;i <= 28; i++) 
        {
            if (i != selectedVal) 
            {
                if ( document.getElementById("theme_" + i) != null )
                {       
                        document.getElementById("theme_" + i).style.display = "none";
                }
            }    
        }
    }
    </script>
    
    <select id="subject" name="subject"  onChange="javascript:theme(this)">
        <option value="-1" selected>Velg tema</option>
        <option value="0">value0</option>
        <option value="1">value1</option>
    </select>
    
    <div class="tips" id="theme_0" name="theme_0">
        <div class="tipsLabel">Tips:</div>
        <div class="tipsContent">
            lorem ipsum
        </div>
    </div>
    
    <div class="tips" id="theme_1"  name="theme_1">
        <div class="tipsLabel">Tips:</div>
        <div class="tipsContent">
            more lorem ipsum
        </div>
    </div>
    

    Sample using jquery

    <script>
    
    $(function(){
        $("#subject").change(function(){
            var selectedVal = $(this).val();
            if ( selectedVal == -1 )
            {
                $("div.tips").show();   
            }
            else
            {
                $("div.tips").hide();
                $("#theme_" + selectedVal).show();
            }
        });
    });
    
    </script>
    <select id="subject" name="subject">
        <option value="-1" selected>Velg tema</option>
        <option value="0">value0</option>
        <option value="1">value1</option>
    </select>
    
    <div class="tips" id="theme_0" name="theme_0">
    <div class="tipsLabel">Tips:</div>
    <div class="tipsContent">
        lorem ipsum 0
    </div>
    </div>
    
    <div class="tips" id="theme_1"  name="theme_1">
        <div class="tipsLabel">Tips:</div>
    <div class="tipsContent">
        more lorem ipsum 1
    </div>
    </div>
    

    Working Demo

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

Sidebar

Related Questions

So, I have this nice little view that I've made, which basically shows two
I have made this nice little table: testPage.cfm: <html> <head> <title>Test Page</title> <style> .blue{
I have this nice little snippet i've made for getting browser position: if (!window.position)
I made this little function from code snippets around the net. It does what
I made this Greasemonkey script: var maxpi = 250; var p1 = /html/body/div/div[2]/div/div[2]/table[2]/tbody/tr[1]/td[11]; var
I've made this nice python app that runs when i use python main.py in
Ok, so I have this PHP script that runs in a nice little infinite
I have this nice android app made up and was going to add in
I made this little Cocoa app with a WebView that displays Google Maps in
I am working on a project which made use of an old (but nice)

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.