10 examples of 'jquery remove child' in JavaScript

Every line of 'jquery remove child' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
34removeChild(child) {
35 const index = this.childNodes.indexOf(child);
36 if (index === -1) return;
37 child.parentNode = undefined;
38 this.childNodes.splice(index, 1);
39
40 const nextSibling = child.nextSibling;
41 if (child.previousSibling) {
42 child.previousSibling = nextSibling;
43 }
44
45 child.nextSibling = child.previousSibling = undefined;
46}
23function remove(child) {
24 if(Array.isArray(child)) {
25 let currentChild = child[0],
26 nextChild;
27 const lastChild = child[1],
28 parent = lastChild.parentNode;
29
30 while(currentChild !== lastChild) {
31 nextChild = currentChild.nextSibling;
32 parent.removeChild(currentChild);
33 currentChild = nextChild;
34 }
35
36 parent.removeChild(lastChild);
37 }
38 else {
39 child.parentNode.removeChild(child);
40 }
41}
58function remove(parent, child) {
59 if (child && parent && child.parentNode === parent) {
60 parent.removeChild(child);
61 }
62}
124removeChild (child) {
125 child = this.index(child);
126 this.nodes[child].parent = undefined;
127 this.nodes.splice(child, 1);
128
129 let index;
130 for (let id in this.indexes) {
131 index = this.indexes[id];
132 if (index >= child) {
133 this.indexes[id] = index - 1;
134 }
135 }
136
137 return this;
138}
112export function removeChild(
113 parentInstance: Instance | Container,
114 child: Instance | TextInstance,
115): void {
116 const index = parentInstance.children.indexOf(child);
117 parentInstance.children.splice(index, 1);
118}
28remove(child) {
29 this.dom[0].removeChild(child)
30 return this
31}
22removeChild(child) {
23 child.element.remove()
24}
75remove () {
76 let control = this.control
77 this.control = null
78 let controlParent = control.parentNode
79 if (controlParent.classList.contains('vcv-ui-drag-helper-wrapper')) {
80 controlParent.parentNode && controlParent.parentNode.removeChild(controlParent)
81 } else {
82 controlParent.removeChild(control)
83 }
84}
187remove() {
188 let fn = function(_el) {
189 let el = _el.parentNode
190 el.removeChild(_el)
191 }
192
193 if (this.$el) {
194 if (this.$el.length) {
195 Array.prototype.slice.call(this.$el).forEach(function(_el) {
196 fn(_el)
197 })
198 } else {
199 fn(this.$el)
200 }
201 }
202
203 return this
204}
34export function remove (parent, element) {
35 var identity = element.identity
36
37 if (identity < Enum.portal) {
38 var children = element.children
39
40 if (identity !== Enum.component) {
41 for (var i = 0; i < children.length; i++) {
42 remove(parent, children[i])
43 }
44 } else {
45 remove(parent, children[0])
46 }
47 } else {
48 Interface.remove(parent.value, element.value)
49 }
50}

Related snippets