Guest User

Untitled

a guest
Jan 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // document.body.innerText;
  2. $('body').text();
  3.  
  4. //document.body.innerHTML;
  5. $('body').html();
  6.  
  7. $('body').text(); // innertext
  8. $('body').html();//innerhtml
  9.  
  10. <div class="demo">Demonstration Box</div>
  11.  
  12. The code $('.demo').text() would produce the following result:
  13.  
  14. Demonstration Box
  15.  
  16. <div class="demo"><p>Demonstration Box</p></div>
  17.  
  18. $("input").html("text"); will change the---^^^^^^^^^^^^^^^^^---to text
Add Comment
Please, Sign In to add comment