Our developers are using style sheet to show/hide elements. But,
isVisible is always returning true.
<div id="Container1" style="display: none;" />
isVisible("Container1");
I am using getAttribute to check the style sheet as a workaround for
now.
return !getAttribute ("Container1",
"style").equalsIgnoreCase("display: none;");
Is my usage of isVisible method correct?
--
You received this message because you are subscribed to the Google Groups
"tellurium-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tellurium-users?hl=en.