|
Posted by Jedi Fans on July 26, 2005, 10:13 am
Please log in for more thread options
Philip Ronan wrote:
> "bitsyboffin@gmail.com" wrote:
>
>> Hi all,
>> does anybody know of a bug in MacIE which prevents style.display =
>> 'none' and style.visibility = 'hidden' from "sticking" in MacIE?
>
> Is it possible for Javascript to change these input elements from
> type="checkbox" to type="hidden"? That would probably be the neatest
> solution.
>
> Alternatively, try positioning these elements off-screen somewhere (e.g.,
> "position:absolute; left:-100px; top:-100px").
>
document.FORMNAME.ELEMENTNAME.setAttribute('type','hidden');
|