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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:52:23+00:00 2026-05-13T14:52:23+00:00

I am working on a website that requires a btn that removes the entire

  • 0

I am working on a website that requires a btn that removes the entire middle section when clicked to reveal a nice 100% background image. I have set up a standard HTML btn with an id of show-background and I also a div with an id of content-area. My jQuery code looks like this:

$("a#show-background").click(function () {
    $("div#content-area").fadeOut("slow");
});

$("a#show-background").click(function () {
    $("div#content-area").fadeIn("slow");
});

This isn’t working right. I wonder if anyone can put me on the right lines? Many thanks in advance!

  • 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-13T14:52:23+00:00Added an answer on May 13, 2026 at 2:52 pm

    You say that your code uses a button. Since I can’t see your html I’ll assume you’re using either an input tag or a button tag and not an anchor tag. In any case try changing your selector to this.

    $("#show-background")
    

    Also as Emil Ivanov mentioned your calls are canceling each other out. A way around this is to do the following. Assuming that what it is you’re hiding is to be shown initially…

    $("#show-background").click(function () {
      if ($("#content-area").hasClass("bg_hidden")){
        $("#content-area")
          .removeClass("bg_hidden")
          .stop()
          .fadeIn("slow");
    
        $("#show-background").text("Hide Me Text");
      }
      else{
        $("#content-area")
          .addClass("bg_hidden")
          .stop()
          .fadeOut("slow");
    
        $("#show-background").text("Show Me Text");
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a website that requires us to log a user out after
I am currently working on a website that requires the ability to overwrite the
I'm working on a website (tobacco related) that requires all visitors to validate they
I'm working on a website that requires a flash mp3 player. I have absolutely
I'm currently working on a website that requires me to enable validation for different
Working on a website that has Employee and Branch entities, using a database table
I'm working on a website that will be using Facebook Connect to authenticate users.
I'm working on a website that will use features of social networking (like facebook
I am working on a website that has a menu which behaves correctly on
I'm working on a website that uses IIS 7's URL rewriting feature to do

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.