You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

299 lines
8.2 KiB
JavaScript

/**
* This function will remove a node given it's identifier
* @param {type} id
* @returns {undefined}
*/
jx.dom.remove = function(id){
if (id.constructor == String){
item = jx.dom.get.instance(id)
}else{
item = id ;
}
item.parentNode.removeChild(item) ;
}
for(var i=0; i < ldoms.length; i++){
10 years ago
* @returns {undefined}
list = [] ;
}
_dom = jx.dom.get.instance(id) ;