removes an HTML element from DOM
node | HTMLElement|HTMLElement[] | an HTML element (or an array of elements) |
<a id="l1" href='http://google.com'>Google</a>
<a id="l2" href='http://yahoo.com'>Yahoo</a>
<button type="text" onclick="myfunc()">Remove the link</button>
function myfunc ()
{
var link1 = document.getElementById("l1");
var link2 = document.getElementById("l2")
webix.html.remove(link1);
//or webix.html.remove([link1,link2])
}