.text()Returns: String
Description: Get the combined text contents of each element in the set of matched elements, including their descendants.
version added: 1.0.text()
- This method does not accept any arguments.
Unlike the .html()
method, .text()
can be used in both XML and HTML documents. The result of the .text()
method is a string containing the combined text of all matched elements. (Due to variations in the HTML parsers in different browsers, the text returned may vary in newlines and other white space.) Consider the following HTML:
1 2 3 4 5 6 7 |
|
The code $('div.demo-container').text()
would produce the following result:
Demonstration Box list item 1 list item 2
The .text()
method cannot be used on form inputs or scripts. To set or get the text value of input
or textarea
elements, use the .val()
method. To get the value of a script element, use the .html()
method.
As of jQuery 1.4, the .text()
method returns the value of text and CDATA nodes as well as element nodes.
Example:
Find the text in the first paragraph (stripping out the html), then set the html of the last paragraph to show it is just text (the red bold is gone).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|