Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tannum

    Script works in everything except firefox???

    Awsome tsuji, works in everything. Thanks a lot, much appreciated. And postyr, thanks for trying to help too. Cheers Greg Love these forums :-)
  2. tannum

    Script works in everything except firefox???

    Still no joy, postyr. I have this now: var myId_1 = getElementById('Graphic_Div'); var myId_2 = getElementById('Help_Pages_Div'); function toggle () { if (myId_1.style.display == "none") { myId_1.style.display = ''; myId_2.style.display = 'none'; } else { myId_1.style.display = 'none'...
  3. tannum

    Script works in everything except firefox???

    Oops, posted just before you, postyr. I'll try what you suggest and see how we go. Greg
  4. tannum

    Script works in everything except firefox???

    That should be: "Graphic_Div not defined" for this line: not: "Graphic_Div id not defined" for this line: I missquoted that error message.
  5. tannum

    Script works in everything except firefox???

    Hi postyr, No luck I'm afraid. Tried your suggestion, I think I have it right: function toggle () { if ((getElementById('Graphic_Div')).style.display == "none") { (getElementById('Graphic_Div')).style.display = ''; (getElementById('Help_Pages_Div')).style.display = 'none'; } else {...
  6. tannum

    Script works in everything except firefox???

    Hi, I am a designer with a little programming experience and I have cobbled together some javascript that toggles the alternating visibility of two divs. It works fine in all browsers I've tested except firefox. What am I doing wrong for firefox? Here's the code :- <script...

Part and Inventory Search

Back
Top