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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:03:07+00:00 2026-05-28T08:03:07+00:00

I have multiple checkboxes with name=ap[] and want to use jquery to convert the

  • 0

I have multiple checkboxes with name=ap[] and want to use jquery to convert the checked checkbox values into comma separated values so i can then parse as a query string. How would i go about this? .serialize() makes the string over complicated

  • 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-28T08:03:07+00:00Added an answer on May 28, 2026 at 8:03 am

    jQuery.fn.map itterates over a jQuery set, and returns a new array (inside a jQuery wrapper) which contains nodes equal to the return value of each itterarion. You can then get that array by calling jQuery.fn.get, then use that array for anything you want:

    $(':checkbox:checked').map(function(){
      return $(this).val(); // value will be in the returned array
    })
    .get() // extract the new array from the jQuery object
    .join(','); //do anything you want with the array
    

    In your case this can be applied as such:

    var list = $(':checkbox[name="ap[]"]:checked').map(function(){
      return $(this).val();
    }).get().join(',');
    
    alert(list);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple checkboxes. I want to check and uncheck some of them or
I want have this ability to select multiple items with checkboxes and delete them
I have multiple dynamic checkboxes. I would like to find out what checkbox was
I am a newbie in php. I have a form with multiple checkbox values.
I have multiple checkBoxes on my page and using javascript I want to find
I am creating a form with multiple checkboxes with the same name. I have
I want to use jquery to do something depending on which checkbox is clicked.
I have this form with multiple checkboxes with same name and all of checkboxes
I have a Custom Control that has multiple textbox fields and a checkbox contained
We have multiple MFC apps, which use CMutex( false, blah ), where blah allows

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.