Guest User

Untitled

a guest
Oct 15th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div id="comment1">
  2. <p class="comment">Hello World</p>
  3. <button class="edit">edit</button>
  4. </div>
  5.  
  6. <div id="comment2">
  7. <p class="comment">Hello World 123</p>
  8. <button class="edit">edit</button>
  9. </div>
  10.  
  11. <div id="comment3">
  12. <p class="comment">Hello World 456</p>
  13. <button class="edit">edit</button>
  14. </div>
  15.  
  16. <br>
  17. <textarea class="commentArea"></textarea>
  18.  
  19. $('.edit').click(function(e){
  20. var target = $(e.target),
  21. prevComment = target.parent().children().filter('p.comment'),
  22. commentText = prevComment.text();
  23.  
  24. $('.commentArea').text(commentText);
  25. });
Add Comment
Please, Sign In to add comment