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

  • Home
  • SEARCH
  • 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 1060481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:20:01+00:00 2026-05-16T18:20:01+00:00

I have a situation here where I need to be able to add, delete

  • 0

I have a situation here where I need to be able to add, delete and reset the passenger name list dynamically, with maximum 10 passengers.

Below is the code for html interface:

<div id="add_passenger">
<br>
<input type="button" id="add_pax" name="add_pax" value="Add Passenger Name" />
<input type="button" id="del_pax" name="del_pax" value="Delete Passenger Name" />
<input type="button" id="reset_pax" name="reset_pax" value="Reset Passenger Name" />

I am using jquery for adding, deleting and resetting the passenger list.

Below is my jquery code:

$("#add_pax").click(function() {

var limit = $("div[id^='pax_list']").length;
var p = limit + 1;

if ( p < 11 ) {
    $("#add_passenger").append(addPassenger(p));
} else {
    alert("Limit of " + limit + " Passenger Name reached");
}

$("#edit_pax_num").val(limit+1);
});

    $("#del_pax").click(function() {

    var t = $("div[id^='pax_list']").length;

    $("div[id^='pax_list']").each(function() {
        if ($("input[type=checkbox]",this).is(':checked')) {
            if(t > 0) {
                $(this).remove();
                t--;
            }
        } 
    });
});

$("#reset_pax").click(function() {
    $("div[id^='pax_list']").each(function() {
        $(this).remove();
    });
});


function addPassenger(p) {
    var text = "<div id=\"pax_list" + p + "\"><input type=\"checkbox\">&nbsp;<strong>Passenger Name " + p + ":</strong> " +
        "<input id=\"pax_name" + p + "\" class=\"textbox\" type=\"text\" maxlengt=\"100\" style=\"width:300px;\" name=\"pax_name[]\"><br></div>";

    return text;
};

The problem is every passenger list will be assigned under unique div id called with pax_list then the number. How to add, delete and reset the passenger list with assigning a unique id.

I have a thought where every time the user delete the list based on the checkbox, all exist passenger name will be add to an array, and the entire list will recreated. Then, at the end the passenger name from the array will be put back in to first available input. Therefore, the number will always start from number 1.

The add passenger jquery function will look at the last number, to be able to add more passenger until the limit reached.

How to add the passenger name list into an array?

This is what I am trying to do:

var divPaxList = $("div[id^='pax_list']").length;

    if(divPaxList == 0) {
        alert("There is no Passenger Name listed. Please add Passenger Name.");
    } else {

        $("input[id^='pax_name']").each(function() {

            var paxName = document.getElementsByName("pax_name[]").val;
            var paxArray = $.makeArray(paxName);

            $(paxArray).appendTo("#add_passenger");

        });    
    }

If some one has better solution. Sorry for the long thought, really appreciate your help guys.

  • 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-16T18:20:01+00:00Added an answer on May 16, 2026 at 6:20 pm

    This way looks a bit like your version, in that it loops over the elements and adds each value to the array.

    var arrayWithFooValues = [];
    $("input[id^='pax_name']").each(function () {
        arrayWithFooValues.push(
            $(this).val()
        );
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the situation: we have an Oracle database we need to connect to to
I have a very common situation here. And for years I haven't found if
Here's the situation: I have a label's text set, immediately followed by a response.redirect()
Here is the situation: I have been called upon to work with InstallAnywhere 8,
Here is my situation: I have an application that use a configuration file. The
Here's the situation: We have some generic graphics code that we use for one
Here's the situation. I have a webservice (C# 2.0), which consists of (mainly) a
Here is the situation. This small company I'm working with wants to have a
This is often situation, but here is latest example: Companies have various contact data
Here's a problem I keep running into: I have a lot of situations where

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.