- From: Marek Mazurek <mazurek@easynet.ro>
- Date: Fri, 1 Oct 2004 00:18:21 +0400
- To: public-css-testsuite@w3.org
Received on Thursday, 30 September 2004 19:20:11 UTC
How about hiding the label dynamically using javascript after the page has loaded? The label would still be there for screen readers as they ignore scripts. The markup would be identical to example 1 and the script would look something like: var els=document.getElementsByTagName("label"); for(var i=0; (el=els[i]); i++) { if (el.className=="hide") { el.style.display="none"; } } thanx http://www.fast-dir.com
Received on Thursday, 30 September 2004 19:20:11 UTC