удаляет HTML элемент(ы) из DOM
node | HTMLElement|HTMLElement[] | HTML элемент (или массив элементов) |
<a id="l1" href='http://google.com'>Google</a>
<a id="l2" href='http://yahoo.com'>Yahoo</a>
<button type="text" onclick="myfunc()">Удалить ссылку</button>
function myfunc (){
var link1 = document.getElementById("l1");
var link2 = document.getElementById("l2")
webix.html.remove(link1);
//или webix.html.remove([link1,link2])
}