How to use jQuery to get the checked checkboxes values, and put it into a textarea immediately?
Just like this code:
&l
This works perfectly for me:
alert($("input[name=chkboxName]:checked").map(function() { return this.value; }).get().join(","));
Thanks Mohamed ElSheikh