netscape dynamic changes?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lem

    netscape dynamic changes?

    I have this tag:
    <div style="visibili ty=hidden" id='hints'>

    but the following commands(for onMouseOver event):
    document.hints. visibility = 'show' or
    document.hints. visibility ='visible'
    isn't working.

    I'm using netscape 6.0.


  • Lee

    #2
    Re: netscape dynamic changes?

    Lem said:[color=blue]
    >
    >I have this tag:
    ><div style="visibili ty=hidden" id='hints'>
    >
    >but the following commands(for onMouseOver event):
    >document.hints .visibility = 'show' or
    >document.hints .visibility ='visible'
    >isn't working.
    >
    >I'm using netscape 6.0.[/color]

    Why not Netscape 7?

    At Netscape 4, either of those two statements would work,
    but at version 6, they began to support modern standards:

    document.getEle mentById("hints ").style.visibi lity="visible";

    Comment

    • Lasse Reichstein Nielsen

      #3
      Re: netscape dynamic changes?

      "Lem" <hjlem@pacific. net.sg> writes:
      [color=blue]
      > I have this tag:
      > <div style="visibili ty=hidden" id='hints'>[/color]

      Should be
      style="visibili ty:hidden"
      [color=blue]
      > but the following commands(for onMouseOver event):
      > document.hints. visibility = 'show' or
      > document.hints. visibility ='visible'
      > isn't working.
      >
      > I'm using netscape 6.0.[/color]

      Read this: <URL:http://jibbering.com/faq/#FAQ4_41>
      Then try:
      document.getEle mentById("hints ").style.visibi lity = "visible";
      That should work in all standards compliant browsers and in IE.

      /L
      --
      Lasse Reichstein Nielsen - lrn@hotpop.com
      DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
      'Faith without judgement merely degrades the spirit divine.'

      Comment

      Working...