Skip to content

Instantly share code, notes, and snippets.

function insertBGWidget(elementId, code){
const parentElement = document.getElementById(elementId);
if (!parentElement) {
console.error('Не могу установить виджет, не найдет елемент с id ' + elementId);
return
}
if(!code){
console.error('Не могу установить виджет, не указан ключ');
return
}