10 examples of 'remove tr from table jquery' in JavaScript

Every line of 'remove tr from table jquery' 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
260function table_tr_prepend(index){
261 $("tr.slave[data-index=" + index + "]").each(function(){
262 $("#nodes-details").prepend( $(this).prop("outerHTML") );
263 $(this).remove();
264 });
265 var master_content = $("tr.master[data-index=" + index + "]").prop("outerHTML");
266 $("tr.master[data-index=" + index + "]").remove();
267 $("#nodes-details").prepend( master_content );
268};
83td.parent.children.forEach(function loop(_td) {
84 if(_td.domNode.getAttribute('cell_id') == cellId) {
85 loop.stop = true;
86 return;
87 }
88 // ~~ hack: Ecmascript doesn't support `break` :-/ ~~
89 if(!loop.stop) {
90 colIndex += 1;
91 }
92})
12function trFromTable(table) {
13 for (var i in table) {
14 $(i).text(chrome.i18n.getMessage(table[i]));
15 }
16}
74function wipeTable(table) {
75
76 /**
77 *
78 * Function to wipe an HTML table
79 *
80 * @param HTML Table: table - A reference to the table to be wiped
81 *
82 * @author Oli Radlett
83 *
84 */
85
86 // Iterate through the nodes in the table, removing each one
87 while (table.hasChildNodes()) {
88
89 table.removeChild(table.lastChild);
90
91 }
92
93}
47function table_element_unwrap(table) {
48 const rows = table.rows;
49 const row_count = rows.length;
50 const parent = table.parentNode;
51 const document = table.ownerDocument;
52
53 parent.insertBefore(document.createTextNode(' '), table);
54
55 for (let i = 0; i < row_count; i++) {
56 const row = rows[i];
57 for (let j = 0, clen = row.cells.length; j < clen; j++) {
58 const cell = row.cells[j];
59
60 // Move the children of the cell to before the table
61 for (let node = cell.firstChild; node; node = cell.firstChild) {
62 parent.insertBefore(node, table);
63 }
64 }
65
66 parent.insertBefore(document.createElement('p'), table);
67 }
68
69 parent.insertBefore(document.createTextNode(' '), table);
70 table.remove();
71}
93function del_row(i) {
94 var row=document.getElementById('cmd'+i);
95 row.parentNode.parentNode.parentNode.removeChild(row.parentNode.parentNode);
96}
6function tr(){
7 if(window.console && window.console.info){$(arguments).each(function(){console.info(this)})};
8};
195private static deleteRow(e: JQueryEventObject) {
196 $(e.target).closest("tr").remove();
197}
91function clearHighlights(table){
92 for (var span of table.querySelectorAll("span.configuration-highlight")) {
93 var parent = span.parentNode;
94 var prev = span.previousSibling;
95 var next = span.nextSibling;
96 var target;
97 if(prev && prev.nodeType == Node.TEXT_NODE){
98 target = prev;
99 }
100 var text = span.childNodes.item(0).nodeValue;
101 if(next && next.nodeType == Node.TEXT_NODE){
102 text += next.nodeValue;
103 parent.removeChild(next);
104 }
105 if(target){
106 target.nodeValue += text;
107 }else{
108 target = document.createTextNode(text);
109 parent.insertBefore(target, span);
110 }
111 parent.removeChild(span);
112 }
113}
16function collapseRow(table, button){
17 table.children().each(function( index ){
18 if ($(this).hasClass("row-collapsed")){
19 $(this).toggleClass("row-collapsed row");
20 }
21 });
22 var a = $(button).parent().parent().parent().parent().parent().parent().children();
23 if (a.hasClass("box-set-upper-row-bottom-left-collapsed")){
24 a.first().removeClass('box-set-upper-row-bottom-left-collapsed').addClass('box-set-upper-row-bottom-left')
25 a.eq(1).removeClass('box-set-upper-row-bottom-middle-collapsed').addClass('box-set-upper-row-bottom-middle')
26 a.eq(2).removeClass('box-set-upper-row-bottom-right-collapsed').addClass('box-set-upper-row-bottom-right')
27 }
28 if (a.hasClass("box-upper-row-left-collapsed")){
29 a.first().removeClass('box-upper-row-left-collapsed').addClass('box-upper-row-left')
30 a.eq(1).removeClass('box-upper-row-middle-collapsed').addClass('box-upper-row-middle')
31 a.eq(2).removeClass('box-upper-row-right-collapsed').addClass('box-upper-row-right')
32 }
33
34}

Related snippets