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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:05:34+00:00 2026-06-12T11:05:34+00:00

I wanted to know if it was possible using javascript, to replace a line

  • 0

I wanted to know if it was possible using javascript, to replace a line or a value in a select box. Note the: select box is already populated dynamically with javascript to begin with

ie.

[SELECT BOX]
Apples
Oranges
Pears
Strawberries
Kiwi

replace (Oranges) with Mangos, so the new list reads:

[SELECT BOX]
Apples
Mangos
Pears
Strawberries
Kiwi
  • 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-12T11:05:35+00:00Added an answer on June 12, 2026 at 11:05 am
        jQuery(function () { // fire when DOM ready
            jQuery("select:eq(0)").find("option").each(function () { // for loop
                if (jQuery(this).text().indexOf("Oranges") > -1) { // check text with current option
                    jQuery(this).text("Mangos"); // set net text
                    jQuery(this).val("mangos"); // set new value
                }
            });
        });
    

    Native JavaScript:

    var elem = document.getElementsByTagName("select")[0].getElementsByTagName("option");
        for (var i = 0; i < elem.length; i++) {
            if (elem[i].innerHTML.indexOf("Oranges") > -1) {
                elem[i].innerHTML = "Mangos";
                elem[i].value = "mangos";
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i wanted to know that using actionscript, is it possible to send email and
I wanted to know if you can call server side method using JavaScript or
Just wanted to know if it is possible to create a hidden window using
Just wanted to know if is possible to use mod_rewrite on a single(or more
I wanted to know if it's possible to derive a method to generate a
Just wanted to know. Is it possible to highlight text in ElasticSearch on an
I just wanted to know if it is 100% possible, if my language is
i just wanted to know if it is possible to check in mouse event
I'm very new to facebook and wanted to know if this is even possible
I'm new to PHP programming and I wanted to know that is it possible

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.