Reload frame bis...

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

    Reload frame bis...

    Hi

    I want to be able to reload a frame only when an address specific

    is called using Netscape 4.x.

    I thus introduced into the page the following script (which does not
    work...):

    < script >

    / / Netscape 4.x

    bw.ns4?reload.( );

    < / script >

    I would like in fact that the frame is reloaded in the same way that when

    one uses the function " reload frame" of the contextual menu of Netscape

    4.x.

    Thanks, Patrick



  • Evertjan.

    #2
    Re: Reload frame bis...

    Patrick BARON wrote on 10 aug 2003 in comp.lang.javas cript:
    [color=blue]
    > < script >
    >
    > / / Netscape 4.x
    >
    > bw.ns4?reload.( );
    >
    > < / script >
    >
    >[/color]

    shouldn't that be without the "."
    with "location"
    and with "if" ?

    if(ns4)location .reload()

    your "?" form needs the ":":

    (ns4)?location. reload():alert( "no reload");


    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)

    Comment

    • Evertjan.

      #3
      Re: Reload frame bis...

      Patrick BARON wrote on 10 aug 2003 in comp.lang.javas cript:
      [color=blue]
      > < script >
      >
      > / / Netscape 4.x
      >
      > bw.ns4?reload.( );
      >
      > < / script >
      >
      >[/color]

      shouldn't that be without the "."
      with "location"
      and with "if" ?

      if(ns4)location .reload()

      your "?" form needs the ":":

      (ns4)?location. reload():alert( "no reload");


      --
      Evertjan.
      The Netherlands.
      (Please change the x'es to dots in my emailaddress)

      Comment

      Working...