HTML
- 43 ответа
- 0 вопросов
27
Вклад в тег
.el:before {
content: 'text';
}
.green:before {
color: green;
}
.red:before {
color:red
}
<div class="el"></div>
var massive = [1,2,3,4,5,6];
$('td').each(function(i) {
$(this).append(massive[i]);
});