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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:17:06+00:00 2026-05-13T18:17:06+00:00

So I have a basic HTML <select> element where a user can select a

  • 0

So I have a basic HTML <select> element where a user can select a number.

What I then need to do is create some list items in an unordered list based on the number they selected.

What’s the most efficient way to do that with jQuery?

  • 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-13T18:17:06+00:00Added an answer on May 13, 2026 at 6:17 pm

    The most efficient method may vary across browsers, but I would imagine that setting the innerHTML of a <ul> with a string of html elements would offer the best performance.

    Here’s a Working Demo

    $("#select").change(function() {
      var val = this.value,
          lis = '';
    
      for(var i=1; i <= val; i++) {
        lis += '<li> Ticket ' + i + '</li>';
      }  
    
      document.getElementById('list').innerHTML = lis;      
    });
    

    and HTML

      <select id="select">
        <option value="1">1 ticket</option>
        <option value="2">2 tickets</option>
        <option value="3">3 tickets</option>
        <option value="4">4 tickets</option>
        <option value="5">5 tickets</option>
        <option value="6">6 tickets</option>   
      </select>
    
      <ul id="list"></ul>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 310k
  • Answers 310k
  • 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 Removing rows and columns in arrays are expensive operations because… May 13, 2026 at 10:14 pm
  • Editorial Team
    Editorial Team added an answer Updated answer The original answer (below) used an old API,… May 13, 2026 at 10:14 pm
  • Editorial Team
    Editorial Team added an answer I do something similar with RowDataBound: if (e.Row.RowType == DataControlRowType.DataRow)… May 13, 2026 at 10:14 pm

Related Questions

I'm just beinning basic data driven ASP.NET webforms design. I have the first part
I am trying to dynamically filter search results. Every result has tags associated with
I'm a jQuery newbie, so be gentle! I have a loop that outputs extra
To dynamically fill DropDown controls on my HTML Form, I have written code that
I have a basic ajax application, which will not work, instead the php code

Trending Tags

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

Top Members

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.