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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T12:33:37+00:00 2026-06-09T12:33:37+00:00

I have several pages set up in the same way. Each page has about

  • 0

I have several pages set up in the same way. Each page has about 10 to 15 images and if you click them, the image changes and becomes unclickable.
The code I have for this is:

function ToggleOnclick(elID)
{
var el = document.getElementById(elID);
var loc = document.getElementsByClassName("wrapper");

if (el.onclick)
{
        // Disable the onclick
        el._onclick = el.onclick;
        el.onclick = null;
        el.src = loc.id + "/" + el.name + "Clicked.png";
}
}

The html for the images is:

  ....
  <div class="content">
   <div class="wrapper" id="som">
   <div class="img0"><img src="som/doos.png" alt="doos" name="doos" id="doos" onclick="ToggleOnclick(this.name);" /></div>
   <div class="img1"><img src="som/beer.png" alt="beer" name="beer" id="beer" onclick="ToggleOnclick(this.name);" /></div>
   <div class="img2"><img src="som/bel.png" alt="bel" name="bel" id="bel" onclick="ToggleOnclick(this.name);" /></div>
   ....

Because I need to make about 20 html-files, I had the notion to add the source location of the images as the id-tag of the wrapper-div.

I have little knowledge of javascript and I have a hard time finding what I’m looking for. Possibly also due to not being a native speaker and not knowing what I’m looking for exactly.

Please bear in mind that my files:

  1. have to work in older browser versions due to the specs of our customers
  2. can’t be fixed with JQuery (Please don’t go into that in comments or answers. I can’t use it in this project. It’s not up for discussion.)

tldr;I need a way to set the img src based on the id-tag of the wrapper-div

  • 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-09T12:33:38+00:00Added an answer on June 9, 2026 at 12:33 pm

    getElementsByClassName gives a collection not a single element

    pass the element to ToggleOnclick so you won’t have to fetch it in the function

    function ToggleOnclick(el)
    {
    //var loc = document.getElementsByClassName("wrapper")[0];//assuming there is only one wrapper
    if (el.onclick)
    {
            // Disable the onclick
            el._onclick = el.onclick;
            el.onclick = null;
            //el.src = loc.id + "/" + el.name + "Clicked.png";
            el.src = el.src.replace(".png", "Clicked.png");
    }
    }
    <img src="som/doos.png" alt="doos" name="doos" id="doos" onclick="ToggleOnclick(this);" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have several pages to do with several table on each page. I've got
We have a Flex application which has several 'pages' worth of content. Each time
Lest say that we have several pages that retrieve items from the same EntitySet.
My wordpress is not setting the front page correctly, I have several pages, all
I'm building a single-page application. At the moment, I also have several independent pages
I have created login page forced login in several pages. Now i need to
I have an ASP.NET page with a Wizard control containing several pages of form
My application has got several pages. On some pages I have given a back
I have several links on one page which all direct to the same page,
I have a survey, where you have to click through several pages with questions.

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.