РЕбят а как в этом коде сделать, что бы элементы добавлялись не подряд в одной строке а каждый элемент с новой строки??
<!DOCTYPE html>
02
<html>
03
<head>
04
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
05
<title>demo</title>
06
<script type='text/javascript' src='http://code.jquery.com/jquery-git.js'></script>
07
<script>
08
$(function(){
09
var jCh = $(':checkbox[name="keyword"]'),
10
jText = $('#keyword');
11
12
jCh.change(function () {
13
14
var s = jCh.filter(':checked').map(function () {
15
return this.value;
16
}).get().join(' ');
17
18
jText.val(s);
19
20
});
21
});
22
</script>
23
</head>
24
<body>
25
<input type="checkbox" name="keyword" value="123" />123
26
<input type="checkbox" name="keyword" value="456" />456
27
<input type="checkbox" name="keyword" value="789" />789
28
<input name="keyword" type="text" size="12" title="" class="inputbox" id="keyword" />
29
</body>
30
</html>