Get text from tag : text « jQuery « JavaScript DHTML






Get text from tag

    
<html>
  <head>

    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
          $("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>

   
    
    
    
  








Related examples in the same category

1.Assign text value to DIV
2.Change text to uppercase
3.Replace Span Text Value
4.Output HTML as text
5.Set text for tag
6.text() returns a string that contains the combined text contents of all matched elements
7.text is similar to html(), but escapes HTML (replace "<" and ">" with their HTML entities).