подскажите как побороть ошибку, хочу создать кнопку без html
var btn = document.createElement('button');//создаём нашу кнопку
btn.setAttribute("onclick",selection('{{ t }}'));
btn.setAttribute("class","btn btn-success btn-sm");
btn.setAttribute("style","color: white;");
var textInBtn = document.createTextNode('Занять время');//создаем текст для кнопки
btn.appendChild(textInBtn);//добавляем текст в кнопку
document.body.appendChild(btn);
Выходит ошибка в консоли Uncaught ReferenceError: selection is not defined