How to use jquery to get the checked checkboxes value,and put it into a textarea immediately?
just like this code
<html>
<head>
</head>
<body>
<div id="c_b">
<input type="checkbox" value="one_name" checked>
<input type="checkbox" value="one_name1">
<input type="checkbox" value="one_name2">
</div>
<textarea id="t"></textarea>
</body>
</html>
if the id="c_d" is update by ajax ,the below of altCognito's code does't work,Are there any good solution?
