Guest User

Untitled

a guest
Oct 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var textArea = $('.text');
  2. $('input').change(function() {
  3. textArea.val('');
  4. $("input:checked").each(function(i) {
  5. textArea.val(textArea.val() + $(this).siblings().text() + ';n');
  6. })
  7. });
Add Comment
Please, Sign In to add comment