How to use jQuery to get the checked checkboxes values, and put it into a textarea immediately?
Just like this code:
&l
If you want to insert the value of any checkbox immediately as it is being checked then this should work for you:
$(":checkbox").click(function(){ $("#id").text(this.value) })