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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T21:08:09+00:00 2026-06-18T21:08:09+00:00

I have a form that has a text input with an add button. When

  • 0

I have a form that has a text input with an add button. When you click the add button it gets the text from the input and places it below in another div. I need it to be in a dynamically created unordered list that also places the text from the input inside. I need the output to look like

<ul>
<li>text from input</li>
<li>text from input again</li>
</ul>

Im not sure how to properly place the append to create the list and append the text inside. I can get the text value easily and output it just not into a list. Any help about appending would be great.

  • 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-18T21:08:10+00:00Added an answer on June 18, 2026 at 9:08 pm

    HTML:

    <input type="test" id="inputName" />
    <button id="btnName">Click me!</button>
    
    <ul class="justList"></ul>
    

    JS:

    $('#btnName').click(function(){
        var text = $('#inputName').val();
        if(text.length){
            $('<li />', {html: text}).appendTo('ul.justList')
        }
    });
    

    Here is the demo :

    http://jsfiddle.net/J5nCS/

    UPDATE:

    for your comments :

    here is the url :

    http://jsfiddle.net/J5nCS/1/

    $('#btnName').click(function(){
        var text = $('#inputName').val() + '<button>x</button>';
        if(text.length){
            $('<li />', {html: text}).appendTo('ul.justList')
        }
    });
    
    $('ul').on('click','button' , function(el){
        $(this).parent().remove()
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that has a few text boxes, you input some values
I have a C# form that has a text box that needs to constantly
So I have a multipart form that has fields for text, integers and file
I have a text area in a form that has a character limit and
I have a form, that has about 10 text entries (user, address, email etc;)
have a form that a name has been entered and need to add it
I have a form with a table that has two input boxes, a select
I have created a contact form that has a disabled submit button until all
I have a form that has 3 types of field: (2) text fields that
I have a large form that consists of all the input (text, checkbox, radio,

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.