/    Sign up×
Community /Pin to ProfileBookmark

i can’t hide the cell of the table

hi
i write the following to hide the cell but still appear !!

<td visible=”false” style=”width: 100px”>
hello</td>

any help?
thanks in advance.

to post a comment
HTML

2 Comments(s)

Copy linkTweet thisAlerts:
@WebJoelJul 17.2007 — For what purpose do you need to create an element with a stated width that needs to be 'invisible'? [I]visible="false"[/I] is not HTML so this won't work. There [I]is[/I] a way to hide an element using an inline style statement though. Could you please show more/all of your code and explain what yo uare trying to accomplish?
Copy linkTweet thisAlerts:
@LES35Jul 17.2007 — try display:none to hide it

but it's a good idea to make another empty cell in it's place visible. Like a toggle.
[CODE]
<script>
function toggle_cell(){
if(document.getElementById("contentcell").style.display=="none"){
document.getElementById("contentcell").style.display="";
document.getElementById("emptycell").style.display="none";
}else{
document.getElementById("contentcell").style.display="none";
document.getElementById("emptycell").style.display="";
}
}
</script>
[/CODE]

[code=html]
<table>
<tr>
<td id="contentcell">
stuff
</td>
<td id="emptycell" style="display:none">
&nbsp
</td>
</tr>
</table>
[/code]
×

Success!

Help @seco spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...