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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T03:45:30+00:00 2026-05-15T03:45:30+00:00

instead of re-writing the same function, I want to optimise my code : <div

  • 0

instead of re-writing the same function, I want to optimise my code :

<div class="header">
    <h3>How to use the widget</h3>
    <span  id="idwidget" ></span>
</div>

<div class="content" id="widget">

the JS :

<script type="text/javascript">
    $(document).ready(function() {
        var showText="Show";
        var hideText="Hide";
        $("#idwidget").before(
            "<a href='#' class='button' id='toggle_link'>"+showText+"</a>"
        );
        $('#widget').hide();
        $('a#toggle_link').click(function() {
            if ($('a#toggle_link').text()==showText) {
                $('a#toggle_link').text(hideText);
            } else {
                $('a#toggle_link').text(showText);
            }
            $('#widget').toggle('slow');
            return false;
        });
    });
</script>

This is working just with the div which is called widget and the button called idwidget.

But on this page i have also :

<div class="header">
    <h3>How to eat APPLES</h3>
    <span id="IDsomethingelse" ></span>
</div>

<div class="content" id="somethingelse">

And I want it to be compatible with the code.

I heard about children attribute, do you have an idea how to do that please ?

Thank you

  • 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-15T03:45:30+00:00Added an answer on May 15, 2026 at 3:45 am

    Based on your example snippets of HTML, the following should work (it grabs the all .content divs and works backwards to find the associated span):

    <script type="text/javascript">
        $(document).ready(function() {
            var showText="Show";
            var hideText="Hide";
            $(".content").each(function() {
                var $content = $(this).hide();
                $("<a href='#' class='button' >"+showText+"</a>")
                    .insertBefore($("#id" + $content.attr("id")))
                    .click(function() {
                        if ($(this).text() == showText) {
                            $(this).text(hideText);
                        } else {
                            $(this).text(showText);
                        }
                        $content.toggle('slow');
                        return false;
                     });
            });
        });
    </script>
    

    Edit: I’ve compacted the code a little (but it now requires jQuery 1.4 for the .text(function) bit).

    Edit 2: Ok still more compact than the original, but back to 1.3.X safe code.

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

Sidebar

Ask A Question

Stats

  • Questions 494k
  • Answers 494k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer There are basically 3 ways to display data in a… May 16, 2026 at 10:57 am
  • Editorial Team
    Editorial Team added an answer We just usually soft-delete the users. In other words, have… May 16, 2026 at 10:57 am
  • Editorial Team
    Editorial Team added an answer Well, you can either press Escape, then the key in… May 16, 2026 at 10:57 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I'm writing a Java program, and I want a function that, given a string,
I'm writing a templated C++ generic container class that can optionally maintain its contents
Instead of writing the following non-thread safe method. private static final Calendar calendar =
I have a list of words built from different HTML pages. Instead of writing
I have a page with lots of data, tables and content. I want to
i'm writing a servlet that receives a xml file, gives it to another class
i have an input element, and i want bind both change and keypress event
I have a vector containing large number of elements. Now I want to write
EDIT: I just found my problem after writing this long post explaining every little
I'm currently in the process of writing a little blog / generic posting system

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.