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

  • Home
  • SEARCH
  • 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 7603427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:39:13+00:00 2026-05-30T23:39:13+00:00

I am new to jQuery, exploring its syntax a bit. My page has elements

  • 0

I am new to jQuery, exploring its syntax a bit.

My page has elements like this:

<area id="SA" ... />
<area id="AF" ... />
<area id="EU" ... />
<area id="NA" ... />

I am trying to show and hide div sections based on click events off the area tags, which have matching ending ID’s, coded like this:

<div id="div_SA" ... />
<div id="div_AF" ... />
<div id="div_EU" ... />
<div id="div_NA" ... />

So, to show the exact match, but hide all the div sections which have id’s that start with “div_” but don’t otherwise match, without hiding every other div on the page, I tried this:

    var q = 'div[id="div_' + event.target.id + '"]';
    var r = 'div[id^="div_"],div:not[id$=' + event.target.id + '"]';
    $(q).show();
    $(r).hide();

$(r).hide(); is not working. What am I doing wrong? (I know I could assign CSS classes and get at them with class names, but I’m still curious about how to construct a query that will work this way.)

  • 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-30T23:39:14+00:00Added an answer on May 30, 2026 at 11:39 pm

    Edit: See below for the syntax fix as mentioned in your post,

       var q = '#div_' + this.id;
       var r = 'div[id^="div_"]:not("#div_' + this.id + '")';
    
       $(r).hide();
       $(q).show();
    

    DEMO

    Please check the alternate solution below,

    For evaluating q, I would simply use

    var q = $('#div_' + this.id);
    

    And for r,

    var r = $('div[id^="div_"]').not(q);
    
    r.hide();
    q.show();
    

    DEMO

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

Sidebar

Related Questions

I'm trying to write a new jQuery plugin. base (this is not my plugin,
I have this code, which open new jquery-ui dialog and then hide the dialog's
I am new Jquery and have written a toggle function that looks like this:
I've been trying to use the new jquery-ui, and all but the resizable function
Very new to JQuery and MVC and webdevelopment over all. I'm now trying to
I'm new to jquery and asp.net so please forgive if this is an obvious
I'm new to jQuery so hopefully there is an easy answer to this. I
i'm relatively new to jquery and javascript and am trying to pass a unique
I am using this new jQuery plugin called jsTree www.jstree.com and using the HTML
*>.launch-button { background:#333; } Many new jquery, css style id or class elements start

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.