I have this code in two different applications, it's supposed to hide a "Processing Request, Please Wait..." message.
It works in one application, but not in another. I've tried putting an alert in the hideObject function in both applications, but it still only works in one application. Am I missing a setting or something??VB Code:
<script> function hideObject(obj) { if (ns4) { obj.visibility = "hide"; } if (ie4 || upLevel) { obj.style.visibility = "hidden"; } } </script> <body onload="hideObject(Processing);">
This is driving me nuts.




Reply With Quote