[javascript] Display a hidden object (see thread for details)

Glaanieboy

OSNN Veteran Addict
Joined
6 Mar 2002
Messages
2,628
In my search for cute/fun html play thingies I found a fun one here on NTFS.org, or actually vBulletin 3.0. When you want to attach a file to a post, you use the 'Manage Attachments' button, which brings up a new window. When uploading a file in this window, a hidden text becomes unhidden, which says 'Uploading Files, please wait'. I was curious, so I peeked in the source to see how it's being done.
It turns out that a javascript function unhides a hidden text ('display: none' in CSS). I also wanted this, so I copied the relevant bits of code and modified it a bit and put it in a file.
As you may guess, it doesn't work. I put in alert boxes in each if...else structure, but it doesn't even display that. Can anyone point me out what is broken and should be fixed? The file can be found at http://glaanieboy.dyndns.org/test_pages/index.html

Thanks!
 
When you are looking for an answer you can't find it, but when you aren't, you bump into it right away :rolleyes: :lol:
I found a better javascript function on another website and that code works :)

Code:
function hideTable(ID) {
        if (document.getElementById(ID).style.display == "") {
            document.getElementById(ID).style.display = "none";
        } else {
            document.getElementById(ID).style.display = "";
        }
}
 

Members online

No members online now.

Latest profile posts

Also Hi EP and people. I found this place again while looking through a oooollllllldddd backup. I have filled over 10TB and was looking at my collection of antiques. Any bids on the 500Mhz Win 95 fix?
Any of the SP crew still out there?
Xie wrote on Electronic Punk's profile.
Impressed you have kept this alive this long EP! So many sites have come and gone. :(

Just did some crude math and I apparently joined almost 18yrs ago, how is that possible???
hello peeps... is been some time since i last came here.
Electronic Punk wrote on Sazar's profile.
Rest in peace my friend, been trying to find you and finally did in the worst way imaginable.

Forum statistics

Threads
62,015
Messages
673,494
Members
5,621
Latest member
naeemsafi
Back