how to hide a <td>?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    how to hide a <td>?

    i want to hide the values inside a <td> of a table? how can i do this?
  • movieking81
    New Member
    • Feb 2007
    • 52

    #2
    If your using css I think the following might work.

    .classnamehere
    {
    display:none;
    }

    OR

    #tablename td
    {
    display:none;
    }

    Of course, I believe this hides the entire cell not just the contents, but give it a shot.

    Hope it helps

    Dean

    Comment

    Working...