Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
showNote
note
function showNote(anchor, position, html) { var note = document.querySelector('div.note.' + position); if(note == null){ note = document.createElement('div'); note.className = "note " + position; note.innerHTML = html; document.body.append(note); } positionAt(anchor, position, note); }