Skip to content

Instantly share code, notes, and snippets.

@mvark
Created July 7, 2024 06:29
JavaScript code to remove the last 2 columns of a 3-column table from the browser's developer console
// Select all table rows
const rows = document.querySelectorAll('table tr');
// Iterate through each row
rows.forEach(row => {
// Remove the last cell twice
row.removeChild(row.lastElementChild);
row.removeChild(row.lastElementChild);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment