Microsoft
Software
Hardware
Network
Question : how to determine style.display value
I've got a problem. I have a style and html as follows:
.hideMe {display:none;}
:
<tr id="myId" onclick="doThis('myId') class=hideMe> .... </tr>
My doThis() function is supposed to determine the current state of the display attribute and switch it back and forth. The problem is, the elements display attribute value is initially empty, so I can't tell whether it is "none" or whatever the 1st time.
How can I figure this out?
Answer : how to determine style.display value
see if the class equals "hideMe"
function doThis( el )
{
el =document.getElementById(e
l);
if( el )
{
el.className = el.className.indexOf('hide
Me') ==-1 ? el.className + " hideMe" : el.className.replace("hide
Me","");
}
}
Random Solutions
Moving SQL Server 2005 databases to a larger storage area network (SAN) disk
3d tracking / match moving with blender ?
Bad request invalid hostname - IIS GFI Mail Essentials
Which firewall to choose?
mssql: Can I do a select for example: SELECT MAX(Id) FROM a table when the Id value is i.e. 58_1
looking for code for TMemtable TMemDataset
MS SQL Server and Toad for SQL Server -- How do I **allow** strings to be truncated?
Combining VBA Statement
Flash AS2 loop through array using bracket notation
mySQL problem