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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:09:58+00:00 2026-05-23T15:09:58+00:00

I have a few actor names separated by commas, and I am trying to

  • 0

I have a few actor names separated by commas, and I am trying to get each name in that list and plug it into a dynamically created li of its own under a ul while capitalizing the first letter only and trimming commas/spaces (the only space that should not get trimmed is between “john lock” since there is no comma there between the name) like this:

var cast = ('jack, kate ,sawyer , john lock ,, hurley')

<ul id="cast-members">
<li>Jack</li>
<li>Kate</li>
<li>Sawyer</li>
<li>John Lock</li>
<li>Hurley</li>
</ul>

Any idea how to get this accomplished 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-23T15:09:58+00:00Added an answer on May 23, 2026 at 3:09 pm

    This should do it

    var cast = 'jack, kate ,sawyer , john lock ,, hurley';
    var castlist = cast.split(',');
    
    var $ul = $('<ul>'); //create an in-memory <ul> element to hold our elements
    
    $.each(castlist, function(idx,val){ // for each item in the split array
        var value = $.trim(val).replace(/\b\S/g, function(m){return m.toUpperCase();}); // trim and capitalize the item
        if (value.length > 0){ // if its length > 0 (non-empty)
            var $li = $('<li>', { // create a <li> element
                html: $('<a>', { // set its html to be a new <a> element
                    href:'Bio.html#'+value, // with a href
                    text:value // and a text value
                })
            });
            $ul.append($li); // append our new <li> to the <ul>
        }
    });
    $('.lost-cast').append( $ul );  // append the filled <ul> in the /lost-cast element 
    

    demo at http://jsfiddle.net/gaby/gvb6n/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have few classes that I need to annotate with a name so I
I have few Question for which I am not able to get a proper
I have few buttons of which each button is assigned a class with a
I have few 'so' files that I need to load in maven java project
Have few columns and tables, as follows: NOTE : The names of elements used
I have few TabPages and each contains rich text box. How can I access
I have few pages that I show from my main page inside iframe .
I have few questions on this as selenium always need windowid to get control
Have few thousand reports that have consistently formatted tabular data embedded within them that
I have few thousand of items. For each item I need to download a

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.