Get text and attribute in jQuery

Description

The following code shows how to get text and attribute.

Example


<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--from   www.j  a va 2 s . co m-->
$("div[id]").one("click", function(){
var idString = $(this).text() + " = " + $(this).attr("id");
$(this).text(idString);
});
});
</script>
</head>
<body>
Click to see.
<div>div</div>
<div id="hey">div</div>
</body>
</html>

Click to view the demo

The code above generates the following result.

Get text and attribute in jQuery
Home »
  Javascript Tutorial »
    jQuery »
      jQuery DOM
...
Append Text node created by document.create...
Append cloned paragraph to document body in...
Append hard code HTML tags to a paragraph i...
Append hard code tag to body tag in jQuery
Append selected element to all paragraphs i...
Change element id by using its own text val...
Change inner html and set its color in jQue...
Change text to uppercase in jQuery
Change the tag with replaceWith and keep th...
Check if the element contains specific text...
Check if the element is the first child in ...
Check to see if the parent element is a for...
Clear an attribute in jQuery
Combines the text of all the elements in a ...
Convert elements to array with .toArray() i...
Create a paragraph clone then add a hard co...
Get HTML content in jQuery
Get image src attribute value in jQuery
Get text and attribute in jQuery
Get text from first paragraph and set it as...
Get the content of a paragraph and convert ...
Get the title attribute from an image eleme...
Insert a cloned element after selected elem...
Insert a hardcoded element after in jQuery
Insert a selected element after in jQuery
Insert a selected element with prepend in j...
Insert hard coded HTML element after select...
Insert hardcoded HTML after all paragraphs ...
Insert hardcoded element to a span element ...
Insert selected content before each of the ...
Insert text node created from document.crea...
Join the tag name with map function in jQue...
Map each list item to uppercase in jQuery
Map parents to get its name in jQuery
Map value with index and value in jQuery
Remove an attribute by name in jQuery
Remove element from selected list by its st...
Remove element from the selected list by id...
...