Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

<%-- other tags --%>
<table>
  <tr width="100%">
    <td width="130" />
    <td id="BottomCell" width="100%" />
  </tr>
  <tr>
    <td/>
    <td/>
  </tr>
</table>
<%-- other tags --%>

There may be more than one table on the page. I want the td before "BottomCell" to be removed (or hidden) when the page is loaded. How can I do this with javascript or css?

Thanks.

BTW, I'm developing a Sharepoint WebPart that will be put onto a page. The is on that page, which i don't have control of directly. But the WebPart should remove this as long as it shows up on the page.

share|improve this question
1  
We need more information. From which context are you wanting it to be removed? There are multiple ways of doing it. – Matt Apr 21 '10 at 18:26
1  
Also, are you using jquery, prototype or any other js library? – Jimmy Baker Apr 21 '10 at 18:29
1  
if you remove the first <td>, your rows will have a different count of columns … that won't be valid html anymore without the colspan attribute – knittl Apr 21 '10 at 19:29
1  
Highlight the markup with your cursor and press the Delete key – Josh Stodola Apr 21 '10 at 19:31
@knittl That is not true at all – Josh Stodola Apr 21 '10 at 19:31
show 5 more comments

6 Answers

up vote 4 down vote accepted

Wow, going back to basics after using a framework is hard work.

var element = document.getElementById('BottomCell').previousSibling;
var parent = element.parentNode;
parent.removeChild(element);
share|improve this answer
If it is, then you didn't learn the basics in the first place. ;) – Bob Apr 21 '10 at 19:30
2  
No, it's just all the damn typing. – Diodeus Apr 21 '10 at 19:46
I applied your approach and it works perfectly. I use the code for window.onload event. It seems the tr is removed after the page has been rendered. So I see some jagged movements. Any idea on how to solve this? – Shuo Apr 21 '10 at 22:38
@bryan: just don't add your column to your code? what's the point in adding it anyway? – knittl Apr 22 '10 at 1:33
@knittl, I've explained why in the end of the question. Thanks. – Shuo Apr 22 '10 at 2:05
show 1 more comment

In jQuery:

$('#BottomCell').prev().detach();
share|improve this answer
Haven't tried JQuery, but I assume this should work. Thanks! :) – Shuo Apr 21 '10 at 19:58

Well, assuming you have only one table, then you could do something like this (in javascript):

var firstCell = document.getElementsByTagName('tr')[0].getElementsByTagName('td')[0];
firstCell.parentNode.removeChild(firstCell);

It would get the first cell of the first row in the entire DOM tree, and remove that cell.

share|improve this answer
though it's not necessary that it's the first tr in the document. – Shuo Apr 21 '10 at 20:34

tr > td should do the trick.

Child and Sibling selectors

http://css-tricks.com/child-and-sibling-selectors/

share|improve this answer
Thanks. I may have more than one tr, and only in one of the tr I want to remove a td – Shuo Apr 21 '10 at 18:39

@diodeus if there are only 2 data cells that would be acceptable, however if you wish to remove the first data cell regardless of however many cells are located in that row, you can do something like

var el = document.getElementById('BottomCell');
el.removeChild(el.parentNode.firstChild);
share|improve this answer

In jQuery I would find the parent and use the :first selector probably

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.