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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:40:49+00:00 2026-05-15T15:40:49+00:00

Hope you can help. I’m looping through two selectors: $(‘.div’).each(function() { $(‘.selector1, .selector2 option:selected’).text();

  • 0

Hope you can help.

I’m looping through two selectors:

$('.div').each(function() {
    $('.selector1, .selector2 option:selected').text();
}

Both selectors returns plain-text and I need the output in the order of the page.

My problem is that whenever it is .selector2 (value from a dropdown) I need to add a < span > tag around it.
How can I do that and at the same time keep the order?

  • 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-15T15:40:50+00:00Added an answer on May 15, 2026 at 3:40 pm

    text() returns plain text with no markup. You shouldn’t treat this as HTML, as you imply by ‘adding <span>’. Otherwise, < and & characters in the text will become markup, with potential security implications. Never mix up plain-text and HTML markup.

    If you must throw HTML strings about, you could use html() instead:

    var html= $('.selector1, .selector2 option:selected').map(function() {
        if ($(this).is('.selector1'))
            return $(this).html();
        else
            return '<span>'+$(this).html()+'</span>';
    }).get().join('');
    

    But I’d prefer to use DOM-like methods:

    target= $('#place-to-put-content');
    $('.selector1, .selector2').each(function() {
        if ($(this).is('.selector1'))
            $target.append(document.createTextNode($(this).text()));
        else
            target.append($('<span>', {text: $(this).val()}));
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My question really has three related parts which I hope you can help me
I hope there's a SharePoint expert here on SO who can help with this.
Hope anyone can shed light on this so I can use pens with dash
I hope someone can guide me as I'm stuck... I need to write an
I hope I can explain this clearly enough. I have my main form (A)
this is my first question here so I hope I can articulate it well
Originaly posted a while back on a different forum, hope I can find a
This really, really urks me, so I hope that someone can give me a
I hope this question does not come off as broad as it may seem
I hope everyone will pardon the length, and narrative fashion, of this question. I

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.