JavaScript
13
Вклад в тег
$(document).on('click','.add_element', function(e){
e.preventDefault();
let links = $("[data-rebest='yes']").length;
$('.list').find('.list__item:first').clone(true).attr('id', 'period' + links).prependTo(".list");
})
$(document).on('click','.remove_element:not(:first)', function(e){
e.preventDefault();
$(this).parent().parent().remove();
});
date
script[c].appendChild(bg_count(event, bg, date)
function showCounter(wrapper, block, date){};
function bg_count(name, theme, date)
bg_count
добавить date = new Date(date).getTime();
// а в вызове showCounter подшаманить с bind
setInterval(showCounter.bind(this,wrapper, block, date), 1000);
// тоже самое без bind
setInterval(() => showCounter(wrapper, block, date), 1000);
showCounter()
удалить var block = wrapper;