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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:54:53+00:00 2026-05-26T18:54:53+00:00

My page displays divs containing posts. The divs have the following format (where you

  • 0

My page displays divs containing posts. The divs have the following format (where you see # is the postID in my database):

<div id="post_#>
    <div id="post_#_inside">
        <div id="like_#">
        </div>
        <div id="dislike_#">
        </div>
    </div>
</div>

Every post_# also holds a class of like or dislike.

I also have two checkboxes. Their goal is to toggle all liked posts or all disliked posts.

<form name="myform" action="" method="post">
<fieldset>
    <p class="left"><input id="show_likes" name="show_likes" type="checkbox" value="1" class="choice"/>
    <label for="b1">Hide Liked</label></p>

    <p class="right"><input id="show_dislikes" name="show_dislikes" type="checkbox" value="1" class="choice"/>
    <label for="b1">Hide Disliked</label></p>
</fieldset>
</form>

My problem is that the jQuery I have hides ALL posts, regardless of their class. Obviously, I want only the Hide Liked checkbox to hide posts with class=”like” and the Hide Disliked checkbox to hide only posts with class=”dislike”. Also, when I click the checkbox again, the post div does return, but the content inside the div remains hidden (I get the div with the backgrounds but no text).

My jQuery:

//When Hide Liked checkbox clicked, toggle all liked contests.
$("input[name*='show_likes']").click(function() {
    if ($('[id^=post_]').is('.like')) {
        $('[id^=post_]').toggle();
    }
});

//When Hide Disliked checkbox clicked, toggle all disliked contests.
$("input[name*='show_dislikes']").click(function() {
    if ($('[id^=post_]').is('.dislike')) {
        $('[id^=post_]').toggle();
    }

What is it that I’m doing wrong?
});

  • 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-26T18:54:54+00:00Added an answer on May 26, 2026 at 6:54 pm

    You needed to loop through your selector instead of just applying the toggle to all matches:

    $("input[name*='show_likes']").click(function() {
        $('[id^=post_]').each(function() {
            if ($(this).is('.like')) {
                $(this).toggle();
            }
        });
    });
    

    But then, why do that when you can just .filter() out the unwanted elements?

    $("input[name*='show_likes']").click(function() {
        $('[id^=post_]').filter('.like').toggle();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a slider-like widget which is basically, a div of sub-divs containing some
My page displays posts stored in my database and pairs a like/dislike button to
We have an HTML page which displays a bunch of pretty bars using divs
I've a page with a a number of divs. I have a container div,
I have a script which hides (display:none) certain divs in the list on page
I have a page that displays a list with a of elements with a
I have a page that displays a table in two different modes. In each
i have a page that displays large datasets into html tables. how can i
I have a page that displays search results and has a DOM like the
I have a page that displays messages and I want it to work just

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.