[Javascript] can not interact with elements once made visible

Andrew Gibson andyg at ihug.co.nz
Wed Mar 6 14:19:44 CST 2002


Chances are it's to do with your zIndex values....?

Subject: [Javascript] can not interact with elements once made visible


> I have a javascript in which I do the following
>
> function setVisible(obj, bool){
>                     if(bool == false){
>                         obj.style.visibility = 'hidden';
>                         obj.style.display = "none";
>                     }
>                     else {
>                         obj.style.visibility = 'visible';
>                         obj.style.display = "block";
>                      }
>                 }
>
> The objects disappear and the new object appears, but I can not interact
> with the new object.  The objects are elements of a tabbed form.  When you
> select a tab at the top of the form, the contents of the form changes.
This
> works fine, but the new contents of the form for the new tab I can see but
> not interact with.
>
> Any ideas?
>
> Dean-O
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
>
>





More information about the Javascript mailing list