|
|
My document.all Javascript/CSS code doesn't work?While going through my book Creating Cool Web Sites with HTML, XHTML and CSS for a class I was teaching at the University of Colorado, Boulder, I realized that a gremlin crawled into the page proofs and somehow I ended up with IE-specific DOM reference code to show how CSS and Javascript can interrelate, rather than the approved standards-based approach.
The code I have works with Microsoft's Internet Explorer document object model (the DOM is basically the parse tree that holds the layout of the entire Web page being rendered. Every container, every letter, every style) and, surprisingly, with the new Firefox browser, but doesn't work with Netscape 7.x or Apple's Safari browser. This is clearly Not A Good Thing. Fortunately, the fix isn't too difficult at all... Here's a typical snippet from the book: <div id="hideme" style="visibility:hidden"> This block of text will be hidden until you click on the word "display" lower on the page.</div> Now you'll want to probably <span onclick="document.all.hideme.style.visibility='visible'"> display</span> the hidden message too.This works fine in Internet Explorer, but it really should be using the Javascript getElementByID call rather than a reference to the non-portable "all" document element. That would change the code thusly: each time you see "all.id" you should instead use "getElementByID("id")":
<div id="hideme" style="visibility:hidden">
This block of text will be hidden until you click
on the word "display" lower on the page.</div>
Now you'll want to probably <span
onclick="document.getElementByID('hideme').style.visibility='visible'">
display</span> the hidden message too.
I apologize to readers who are a bit confused by this. Fortunately, the fix is straightforward and we'll have it fixed in the next printing of the book too, of course.
If you want to get really tricky, you can have the <span> tag emulate the typical characteristics of an anchor tag too, so visitors get a visually consistent cue to click, by adding the following style attribute: style="font-color:#00f;text-decoration:underline;cursor:pointer;"Now if I could just exorcise all the gremlins in the book production process... :-)
Related HTML, JavaScript and Web Site Programming articles:
✔ How to Create Predefined Google Image Search Links?
Thanks for the Amazon URL [see Creating Amazon Search Links]. That worked beautifully. In fact, I sent you $5.00 for coffee in thanks....
✔ Can I embed a Facebook search box on my blog site?I've seen your articles about how to add a Twitter or Google search box on a Web page, but I have a tougher...
✔ Can I use CSS for drop shadows on my blog?I want to give my site a bit of a facelift and add some neat graphical elements. One of which is drop shadows....
✔ How can I embed interactive photo panoramas on my site/blog?I read through your blog entry about how to take panoramic photos with iOS 6 and an iPhone 5 and got enthused. I've...
✔ How can I create a Twitter search URL shortcut?I'd like to add a few Twitter search links to my Web site. Is that possible, or does Twitter prohibit this sort of...
Let's stay in touch!
Sign up for my weekly AskDaveTaylor Newsletter and you'll receive even more tech and gadget help
right to your inbox, along with exclusive news and industry updates. It's good stuff. I promise!
Categorized:
HTML, JavaScript and Web Site Programming
(Article 3776,
Written by Dave Taylor)
Tagged: Previous: What's the best way to figure out if an eBay seller is legit? Next: What download managers allow resumption of interrupted downloads? Reader Comments To Date: 5Robert said, on December 29, 2006 1:12 PM:
Oh dear - as Joel points out, your code is still wrong. It should be getElementById not getElementByID levent toptas said, on July 30, 2010 8:34 AM:
this script not working wiht firefox. thank u.
function layerGizlex() Javascript said, on February 21, 2011 5:32 PM:
Thanks! It helped me to understand the problem and I used getElementsByName() instead of getElementByID() Thanks once again! Kellie said, on March 31, 2013 8:46 PM:
Thanks for your help, I've been a bit stuck with the JavaScript errors on my own page, so this is much appreciated. Now to figure out some of the CSS problems...
I do have a comment, now that you mention it!Check This Out Too... |
Recent Entries
Look for Answers
Recommended
All Our Categories
Apple iPad Help
Articles and Reviews Auctions and Online Shopping Blogs and Blogging Building Web Site Traffic Business and Management Computer and Internet Basics d) None of the Above Facebook Help Google Gmail Help Google Plus Help HTML, JavaScript and Web Site Programming Industry News and Trade Shows iPhone and Cell Phone Help iPod, Sony PSP and MP3 Player Help Kindle Fire Help Mac OS X Help Pay Per Click (PPC) Advertising Pinterest Help Search Engine Optimization (SEO) Shell Script Programming Tech Support Video Help The Writing Business Twitter, LinkedIn and Social Network Help Unix and Linux Help Video Game Tips and Help Windows PC Help Find Me on Google+ ADT on G+ |
Ironically Guru Dave your revised code still doesn't "seem" to work. I tried it in a few browsers (netscape 7, IE 6) and it mostly produced "document.getElementbyID is not a function" error. I'm a novice at javascript myself but to me the code looks right, but browser seems to be saying the that it cannot be used within the onclick like this? Calling the same thing through a function works fine for example...