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 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

Ask A Question

Stats

  • Questions 512k
  • Answers 512k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I've set the title programmatically using code something like this:… May 16, 2026 at 5:36 pm
  • Editorial Team
    Editorial Team added an answer Executing !sym noisy before the .reload will let you know… May 16, 2026 at 5:36 pm
  • Editorial Team
    Editorial Team added an answer it means the file is staged for commit, see the… May 16, 2026 at 5:36 pm

Trending Tags

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

Top Members

Related Questions

hope someone can help. I have two tables: Users -UserID -UserName UsersType -UserTypeID -UserID
hope can help, trying out Jquery clone which seems to work, but I get
Hope you can help. Trying to hide all < li > tags greater than
hope you can help me, again :) i want to build a little webbased
hope some can help - my webservice returns an object with certain fields i
Hope someone can help with this. I've been up and down the web and
Hope someone can help. I have a simple scenario where clicking checkboxes is driving
hope you can help me on this one, I'm currently using this: jQuery plugin:validation
Hope you can help. Is there a way to reliably detect when a stored
hope you can help me with this: I'm working with j_security_check and have this

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.