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

The Archive Base Latest Questions

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

I was wondering how you could relate two HTML elements. For example, let’s say

  • 0

I was wondering how you could “relate” two HTML elements.
For example, let’s say a user clicks on a selection item and I want the element “related” to that element disappear.

<div id="game1Selection">I pick team1</div>
<div id="game2Selection">I pick team2</div>

<div id="game1">This is game 1</div>
<div id="game2">This is game 2</div>

What I would want to happen is that when a user selects “game1Selection” that the div “game1” will disappear and the same thing for game2, game3, etc. I know how to do this the long way:

$('#game1Selection').click( function() {
  $('#game1').toggleClass('selected');
});  //selected has the attribute display:none

How could I make two of them related so I don’t have to write it the long way and just use this

  • 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:12:16+00:00Added an answer on June 11, 2026 at 8:12 pm

    jsBin demo

    $('div[id$=Selection]').click(function(){
       var myID = this.id.split('Selection')[0];
       $('#'+myID).toggleClass('selected');
    });
    

    use the ends with selector $ and retrieve the first part of the ID name by splitting the original ID and getting the first ([0]) part of the name (gameN)


    a better idea demo

    But a far better example would be using this HTML:

    <div>
        <div class="selection">I pick team1</div>
        <div class="selection">I pick team2</div>
    </div>
    
    <div class="game">This is game 1</div>
    <div class="game">This is game 2</div>
    

    and retrieve the clicked element index() and find the matching element using .eq() :

    $('.selection').click(function(){
       var i = $(this).index();
       $('.game').removeClass('selected').eq(i).addClass('selected');
    });
    

    This will allow you to remove the already selected classes and assign it to the index-matching element.

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

Sidebar

Related Questions

Wondering if someone could please explain the difference between these two queries and advise
I was wondering how these two are related to each other. Could anyone here
I was wondering if you could help me. I want to create a situation
i am wondering could i access my app internal storage using emulator. I mean
Hi sorry still learning here and slow to learning code arguments. Just wondering could
i was wondering how could i emulate a mouse click with c# with kinect.
I'm wondering what could be some consequences of reusing the names of built-in types
I was wondering which could be a better way of mounting different apps for
I was wondering what could be the point in trying to delete committed changelists,
I was wondering how could I reload any website using javascript and set it

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.