I have tabs in the index table, and there are icons beside them. I want to remove those. is it possiable ?
Trying using Javascript DOM but I’m not able to get elment.
Inspect the DOM: Use your browser’s developer tools (usually accessible by right-clicking on the element and selecting “Inspect”) to find out the HTML structure of the tabs and the icons. Look for classes or IDs that uniquely identify the icons.
Select the Icons: Use JavaScript to select the icons next to the tabs. This can be done using document.querySelectorAll().
Remove the Icons: Loop through the selected elements and remove them from the DOM using the remove() method.
Tank Bhargav is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
3