Guest User

Untitled

a guest
Dec 9th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. let inps=$("input");
  2. inps.change(function(){
  3. let ololo='';
  4. inps.each(function(){if($(this).is(':checked')){ololo+=$(this).val()+'; ';}});
  5. // $('#testing').html(ololo);
  6. console.log(ololo);
  7. });
Add Comment
Please, Sign In to add comment