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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:18:47+00:00 2026-06-14T03:18:47+00:00

I have a div toggled on various links with a close button. Unfortunately, the

  • 0

I have a div toggled on various links with a close button.
Unfortunately, the close button is not behaving like it should, as its linked with absolute position and so not connected to the div itself. When I put it in position:relative, it adds a new button in the div on every new opening.
This must be peanuts, I know, but myy knowledge is quite basic, so help is much appreciated!
Thanks MrGreen

SCRIPT

$(function(){
    $(".action").click (function(){
        var $this = $(this);
        var target = $this.data('content');

        $('.action').not($this).each(function(){
            var $other = $(this);
            var otherTarget = $other.data('content');
            $(otherTarget).hide(400);
        });

        var cls = $('<div/>', {
            'style':'left:843px;top:15px;width:12px;height:18px;cursor:pointer;padding:3px;position:absolute;border:solid gray 0px;background-color:',
            'id':'cls',
            'text':'x',
            'title':'Close',
            'click':function(){
                var t=$(this);
                t.parent().hide(400, function(){
                    t.remove();
                });
            }
        });

        $(target).prepend(cls).show({height: "toggle"},400);
    });
});
  • 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-14T03:18:48+00:00Added an answer on June 14, 2026 at 3:18 am

    Why are you keeping adding/removing the close buttons?

    I’d suggest you use something like this:

    $(document).on('click', ".action", function() {
        var $this = $(this);
        var target = $this.data('content');
        $(target).toggle();
    
        $('.action').not($this).each(function() {
            var $other = $(this);
            var otherTarget = $other.data('content');
            $(otherTarget).hide(400);
        });
    
        $(document).on('click', '.close', function(){
            $(this).parent().hide(400);
        });
    
    });
    

    Full example here: http://jsfiddle.net/EMYFt/5/

    This way, you keep the HTML intact, and just toggle the elements visibility in response to clicks on links / close buttons..

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

Sidebar

Related Questions

I have a button which when toggled displays/hides a div ('.reportOptions'), this works perfectly
I have 2 div's that I need consecutively toggled back and forth showing and
I have a div that I want to toggle between displaying or not when
So I have a toggled div with an image inside of it that toggles
I am having a headache with IE7. I have a div that gets toggled
I have a button that toggles a DIV layer on and off. I am
I'm using Javascript/Jquery to have a button toggle which div is displayed in the
I have a list of elements within a overflow hidden div. So not all
I have a jquery toggle that animates and displays a DIV. I have a
I have a problem with fade toggle, It works when the div is visible

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.