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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T15:25:10+00:00 2026-06-04T15:25:10+00:00

I have written a small function in JQuery, took me a little while but

  • 0

I have written a small function in JQuery, took me a little while but I got there. You click a link and a dropdown shows. But I need to click the link and show the dropdown, but upon clicking it again I want the same dropdown again, up to a maximum or 4.

Now I’m stuck with this a bit, this is how far I got.

HTML:

<a class="toggle" href="#">Add another Location</a>

insert more locations dropdownbox​

JQuery:

$(function() {
    $("a.toggle").click(function(e) {
        $(this).next().toggle();
        e.preventDefault();
    });
});​

CSS:

.toggleDiv { display: none; }
.toggle { font: 14px black Tahoma; }

Can anyone point in the right direction. My JSFiddle is here:

http://jsfiddle.net/Painstar/bkVNk/

Thanks!

​

  • 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-04T15:25:12+00:00Added an answer on June 4, 2026 at 3:25 pm

    I’ve updated the fiddle you sent with how I’d do it:

    jQuery

    var current = 1;
    $(function() {
    $("a.toggle").click(function(e) {
        if(current <= 4) {
          $("#moreLocations" + current).show();
        current += 1;
        }
    e.preventDefault();
     });
    });
    

    HTML

    <a class="toggle" href="#">Add another Location</a>
    <div id="moreLocations1" class="toggleDiv">insert more locations dropdownbox</div>
    <div id="moreLocations2" class="toggleDiv">insert more locations dropdownbox</div>
    <div id="moreLocations3" class="toggleDiv">insert more locations dropdownbox</div>
    <div id="moreLocations4" class="toggleDiv">insert more locations dropdownbox</div>
    

    Assuming you wish to have the 4 boxes as seperate items.

    You could also use the .sibling() with the ID, but if you know the ID‘s then that should be fine.

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

Sidebar

Related Questions

I have written a small function, which uses ElementTree to parse xml file,but it
I am still new to Javascript and JQuery. I have written a small function
I have written a small jQuery plugin with the following structure: (function($) { //
I have written a small plugin to change the text size but it doesn't
I have written a small function, which uses ElementTree and xpath to extract the
I've written a small lightbox plugin for jQuery (yes, there are several ready made
I have written a small function in C# which isn't my main launguage so
Im have written a small function that basically takes the currentPosition value as a
I have written a small piece of code to calculate quadratic equations, but if
I have written a small jquery application that allows a person to slide a

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.