jquery prepend to textarea text()
Asked Answered
R

2

5

I have a text area. I can set the text of it with

$("#mytextarea").text("foo")

I can prepend to the text area like this:

$("#mytextarea").prepend("foo")

But I cannot prepend to the jquery text() object like this:

$("#mytextarea").text().prepend("foo")

The reason I want to do this is so that if my user gets me to prepend this text:

$("#mytextarea").prepend("<script>alert('lol i haxed uuu!')</script>")

...the script executes and I lose.

Help?

Ratable answered 6/6, 2010 at 3:30 Comment(0)
N
9

You need to modify the val() property:

$('#mytextarea').val(function(index, old) { return '...' + old; });

By the way, the correct way to get the contents of the textarea is to call val(), not text():

Noyes answered 6/6, 2010 at 3:34 Comment(0)
L
0

Please check the following URL for jQuery .val() API documentation for more details-

http://api.jquery.com/val/

Ledge answered 30/3, 2012 at 7:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.