Using jQuery what is the best way of editing option text for a given select value.

I know the value of the option I want to edit. I thought it would be something like...

$('#select').val().$('option').html('New Text');

But I am clearly missing something.

link|improve this question

$('#select option:selected').text("new text") – Byron Cobb Mar 21 '11 at 16:42
feedback

3 Answers

up vote 2 down vote accepted
$('#select option[value="someValue"]').text("newText")

could use .html instead of .text, if adding html content.

link|improve this answer
feedback

You're probably looking for the :selected selector and the text() method:

$("#select option:selected").text("New Text");
link|improve this answer
feedback

Something like this?

$('#select').children.('option').text('New Text');

Have a look at Selectors for more information on selecting the correct item. You could do something like

$('#select').children.('option:first').text('New Text');

Or you can use

$('#select').children.('option[value="thevalue"]').text('New Text');

If you know the value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.