vote up 4 vote down star

I am attempting to set a value in a textarea field using jquery with the following code:

$("textarea#ExampleMessage").attr("value", result.exampleMessage);

The issue is, once this code executes, it is not altering the text in the textarea?

However when performing an alert($("textarea#ExampleMessage").attr("value")) the newly set value is returned?

flag

8 Answers

vote up 16 vote down check

Have you tried val?

$("textarea#ExampleMessage").val(result.exampleMessage);
link|flag
I think that does the same as attr("value"); – Ben Alpert Jan 6 '09 at 6:12
1  
mostly true, although val does take the time to make sure the value you're setting is a string, and attr seems to do a bit more magic overall. – enobrev Jan 6 '09 at 6:31
1  
Sorry about the muck around, val() is working. I had tried a different field, and did not re-update the textarea id ref in question. – GONeale Jan 6 '09 at 6:34
2  
Yeah. A textarea doesn't have a value attribute, while an input does. – MDCore Jan 6 '09 at 12:20
1  
Agreed, but val() is setting it in this instance. They [jquery] must determine it's textarea type and set the text. – GONeale Jan 7 '09 at 0:03
show 1 more comment
vote up 0 vote down

I had an issue with using .text('somevalue'); in firefox 3.07, 3.15. Interestingly it worked fine in Firefox 3.5.* I know thats specific but it didnt pass my companies QA testing because of this.

However - I used .val() as this worked in all versions. Just for your info.

link|flag
vote up 0 vote down

Oohh come on boys! it works just with $('#your_textarea_id').val('some_value');

link|flag
vote up 0 vote down

It works for me.... I have built a face book wall...

Here is the basis of my code:

// SETS MY TEXT AREA TO EMPTY (NO VALUE) $('textarea#message_wall').val('');

link|flag
Yep dude already answered. Welcome to Stack Overflow, the answer accepted is in green. – GONeale May 28 at 0:59
vote up 1 vote down

Textarea has no value attribute, its value comes between tags, i.e: <textarea>my text</textarea>, it is not like the input field (<input value="my text" />). That's why attr doesn't work :)

link|flag
vote up 3 vote down

I think this should work :

$("textarea#ExampleMessage").val(result.exampleMessage);
link|flag
vote up 0 vote down

Yep tried both. This is just nuts. attr() and val() should both work, I'm sure of it.

link|flag
have you tried alerting (or better yet, console.log-ing) result.exampleMessage before setting it to make sure it has the value you think it does before putting it into the textarea? Do you have any events that might be replacing the text? Any hovers? – enobrev Jan 6 '09 at 6:18
Don't respond to answers with a new answer, use the comments – John Sheehan Jan 6 '09 at 6:19
That was directed to GONeale – John Sheehan Jan 6 '09 at 6:20
i figured, but thanks for the clarification – enobrev Jan 6 '09 at 6:22
No problem John, I usually do, just wanted two parties to know I tried their methods. – GONeale Jan 6 '09 at 6:32
vote up 0 vote down

I think that since a <textarea> has the value stored in the content, you can't set the value attribute, and you have to instead use:

$("textarea#ExampleMessage").text(result.exampleMessage);

If that doesn't work, I'd check that your selector is actually returning something.

link|flag
I agree with you, text seems like the most appropriate choice. My selector? result.exampleMessage? Yes it does, as in my alert on the next line displays the new contents, which was updated with result.exampleMessage. – GONeale Jan 6 '09 at 6:31

Your Answer

Get an OpenID
or

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