Pattycake245
Programmer
I've read dozens of posts on how to show and hide table rows, text fields, etc. What I could not find is if it is possible to show and hide a group of table columns. Would this even be possible?
Tim
Tim
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html>
<head>
<title>Untitled</title>
</head>
<body>
<table>
<colgroup>
<col id="c1" style="display: none;">
</colgroup>
<tr>
<td>text 1</td>
<td>text 2</td>
<td>text 3</td>
</tr>
<tr>
<td>text 1</td>
<td>text 2</td>
<td>text 3</td>
</tr>
<tr>
<td>text 1</td>
<td>text 2</td>
<td>text 3</td>
</tr>
</table>
</body>
</html>