/* adress editor initiator */ function _e(s){ console.log(s); } function starteditor(){ _e('starteditor()'); var s = document.createElement('script'); s.src = '/api/svgedit/adressobj'; document.body.appendChild(s); s.onload = function(){ var s = document.createElement('script'); s.src = '/api/svgedit/adressedit'; document.body.appendChild(s); } } function addbutton(){ _e('addbutton()'); var b = document.createElement('button'); b.type='button'; b.classList.add('btn'); b.classList.add('btn-light'); b.id='starteditor_button'; b.innerHTML = '   Редактировать'; b.addEventListener('click', starteditor); document.querySelector('.img_preview-holder').appendChild(b); } document.addEventListener('DOMContentLoaded',addbutton);