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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:47:14+00:00 2026-05-26T10:47:14+00:00

I am new to jQuery and Javascript. I have to create select->option drop down

  • 0

I am new to jQuery and Javascript. I have to create select->option drop down control with client side jQuery/Javascripting. These drop downs are having their options from array and i have to create as many drop down as the array items. Please below two functions written, they are not drawing many drop downs but only one.

<script type="text/javascript">
    // program inputs
    var format1Fields = ",RepID,RetailOutlet,Address,Information,City,State,ZipCode, Demographic,Bullet,Date,Note1,Note2,Note3,Note4,Note5,AssignTask1,AssignTask2,AssignTask3,AssignTask4,LiquorPresence,PhotoLink1,Description1,PhotoLink2,Description2,PhotoLink3,Description3,PhotoLink4,Description4,PhotoLink5,Description5,PhotoLink6,Description6,PhotoLink7,Description7,PhotoLink8,Description8,PhotoLink9,Description9,PhotoLink10,Description10,PhotoLink11,Description11,PhotoLink12,Description12,Videolink1,Videodescription1,Videolink2,Videodescription2,Videolink3,Videodescription3,Videolink4,Videodescription4,POSInstalled1, POSQuantity1,POSInstalled2,POSQuantity2,POSInstalled3,POSQuantity3,POSInstalled4,POSQuantity4,POSInstalled5,POSQuantity5, POSInstalled6,POSQuantity6,POSInstalled7,POSQuantity7,POSInstalled8,POSQuantity8,POSInstalled9,POSQuantity9,POSInstalled10, POSQuantity10,POSInstalled11,POSQuantity11,POSInstalled12,POSQuantity12,Project,Visit,";
    var outputFieldsString = "date visited,Mapping link,Date,RepID,Project,RetailOutLet,Address,City,State,Information,Demographic,Bullet,Note1,Note2,Note3,Note4,Note5,AssignTask1,AssignTask2,Assigntask3,AssignTask4,LiquorPresence,PhotoLink1,Picture01,Description1,PhotoLink2,Picture02,Description2,PhotoLink3,Picture03,Description3,PhotoLink4,Picture04,Description4,PhotoLink5,Picture05,Description5,PhotoLink6,Picture06,Description6,PhotoLink7,Picture07,Description7,PhotoLink8,Picture08,Description8,PosInstalled1,MC Cold Box Sticker,PosInstalled2,MC Poster 12 X 18,PosInstalled3,MC Poster 18 X 24,PosInstalled4,MC Poster 24 X 36,PosInstalled5,MC Case Cards,PosInstalled6,MC Standees,PosInstalled7,GM Poster 11 X 17,PosInstalled8,GM Poster 18 X 24,PosInstalled9,GM Recipe Table Tent,Photolink9,Description9,Photolink10,Description10,Photolink11,Description11,Photolink12,POSInstalled10,GM Shelf talker,POSInstalled11,GM Case Cards,POSInstalled12,GM Standees,Picture09,Picture10,Picture11,Picture12,Description12";
    var outputDelimiter = ",";

    var inputFieldList = new Array();
    var outputFieldList = new Array();

    $(document).ready(function(){
        //$('#inputfields').val(trimOnSides(format1Fields.replace(' /g',''),","));
        $('#inputfields').val(trimOnSides(format1Fields,","));      

        // start mapping click event
        $('#start_mapping').click(function(){
            var inputFieldString = $('#inputfields').val();
            var inputDelimiter = $('#delimiter option:selected').val();
            // input field validation
            if(inputFieldString == ""){
                alert("Please provide Input Fields header line having delimeter to identify the field names!");
                $('#inputfields').focus();
                return false;
            }
            // delimiter validation
            if(inputDelimiter == "0"){
                alert("Please select the correct delimiter that is matches with the seperating delimiter of the Input Fields!");
                return false;
            }
            // Load input fields item array
            inputFieldList = getFieldsList(inputFieldString,inputDelimiter);
            if(inputFieldList.length==0){
                alert("Problem transforming Input Field data into list of items for mapping");
                return false;
            }
            // Load output fields item array
            outputFieldList = getFieldsList(outputFieldsString,outputDelimiter);
            if(outputFieldList.length==0){
                alert("Problem transforming Output Field data into list of items for mapping");
                return false;
            }
            // print field list item in HTML <ol>
            getFormListItems(inputFieldList);
            //getDropDownList('waqas','aiseha',inputFieldList);

        });
    });

    // ###### HELPER FUNCTIONS #######

    // helper to generate form of drop down
    function getFormListItems(fieldListItems){
        if((fieldListItems instanceof Array) && (fieldListItems.length>0)){
            var list = $('#mappingitems').append('<ul></ul>').find('ul');
            for(i=0; i<=fieldListItems.length-1; i++){
                list.append('<li>');
                list.append(getDropDownList(fieldListItems[i],fieldListItems[i],fieldListItems));
                list.append('</li>');
                //list.append('<li>'+fieldListItems[i]+'</li>');
                //alert(i);
            }
        }
    }

    function getDropDownList(name, id, optionList) {
        var combo = $("<select></select>").attr("name", name);

        $.each(optionList, function (i, el) {
            combo.append("<option>" + el + "</option>");
        });
        return combo;
        // OR
        //$("#SELECTOR").append(combo);
    }   

    // helper split based string array generators
    function getFieldsList(fieldsString, delimiter){
        var returnList = new Array();
        //alert(fieldsString);      
        // validating the arguments and their data type
        if((fieldsString.length > 0) && (delimiter.length>0)){
            returnList = fieldsString.split(delimiter);
            return returnList;
        }else{
            alert('Problem in function arguments');
        }
    }

    // helper string functions
    function trimOnSides(str, chars) {
        return ltrim(rtrim(str, chars), chars);
    }

    function ltrim(str, chars) {
        chars = chars || "\\s";
        return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
    }

    function rtrim(str, chars) {
        chars = chars || "\\s";
        return str.replace(new RegExp("[" + chars + "]+$", "g"), "");
    }   
</script>

this is the call to the function: getFormListItems(inputFieldList);
inputFieldList can contain Apple, Orange, Banana, Mango

Please help
thanks
Waqas

  • 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-26T10:47:15+00:00Added an answer on May 26, 2026 at 10:47 am

    This will create the drop downs on the fly:

    function getDropDownList(name, id, optionList) {
        var combo = $("<select></select>").attr("id", id).attr("name", name);
    
        $.each(optionList, function (i, el) {
            combo.append("<option>" + el + "</option>");
        });
    
        return combo;
        // OR
        $("#SELECTOR").append(combo);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just started learning Jquery and am new to writing javascript (I am
I am new to jQuery and have managed to create a tabbed interface with
I have the following code in Javascript: jQuery(document).ready(function(){ var actions = new Object(); var
i'm relatively new to jquery and javascript and am trying to pass a unique
New to javascript/jquery and having a hard time with using this or $(this) to
I'm new to javascript/jquery and I've done some poking around the web, but I
jQuery and JavaScript in general are new ground for me. What are some good
I am very new at jQuery ... I've used Javascript many times and am
I'm very new to both the Mvc framework as well as JavaScript and JQuery.
I'd like to create a custom control in javascript. The goal is to create

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.