I have multiple rollovers and onclick commands using "function". They all work on Safari, but one of the functions doesn't work on Firefox.
-------------Here's the javascript
:-------------
function list1() { if
(this.document.all.list1.style.display=="none")
(this.document.all.list1.style.display="block") ;
else (this.document.all.list1.style.display="none") ; }
--------------------------------------…
-------------and the
HTML that calls this function-------------
<a href="javascript
:chng('img1'); showOne2('photo1'); list1();">
Test Link</a>
----------------
To see the live page, here's my little tester spot i set up:
www.hanananah.com/brimin/index.php -- click "Design Live" - thats where I'm having the difficulty.
When you click anything of the list items (w/ the green arrows), content is supposed to show up under it, then disappear if u click it again. It works in Safari, but not in Firefox.
Any help is appreciated -- THANK YOU!