Please ID this JavaScript error message

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

    Please ID this JavaScript error message

    This error shows when I check Netscape's "javascript :" . Doesn't seem
    to present a problem as the site works OK. Still I would like to get
    rid of it.

    "Security Error: Content at

    may not load data from about:blank."

    Thanks!!
  • Laurent Bugnion, GalaSoft

    #2
    Re: Please ID this JavaScript error message

    Hi,

    Albert Spencil wrote:
    [color=blue]
    > This error shows when I check Netscape's "javascript :" . Doesn't seem
    > to present a problem as the site works OK. Still I would like to get
    > rid of it.
    >
    > "Security Error: Content at
    > http://home.hiwaay.net/~ara36/butter...NBandV101.html
    > may not load data from about:blank."
    >
    > Thanks!![/color]

    This message occurs when a frame tries to access properties of another
    frame located in a different domain. This is the case here because you
    have one frame in the domain hiwaay.net trying to access properties of a
    blank frame (which is local, thus in another domain).

    You have probably somewhere in your butterfliesNBan dV101 file an attempt
    to read or set a property of the blank frame. Without further code, it's
    impossible to say what exactly you're doing.

    Try testing this page in Mozilla, you might get a better error message
    (with line number), though I cannot be 100% sure.

    HTH,

    Laurent
    --
    Laurent Bugnion, GalaSoft
    Software engineering: http://www.galasoft-LB.ch
    Private/Malaysia: http://mypage.bluewin.ch/lbugnion
    Support children in Calcutta: http://www.calcutta-espoir.ch

    Comment

    • Albert Spencil

      #3
      Re: Please ID this JavaScript error message

      "Laurent Bugnion, GalaSoft" <galasoft-LB@bluewin.ch> wrote in message news:<3ff99de9$ 1_3@news.bluewi n.ch>...[color=blue]
      > Hi,
      >
      > Albert Spencil wrote:
      >[color=green]
      > > This error shows when I check Netscape's "javascript :" . Doesn't seem
      > > to present a problem as the site works OK. Still I would like to get
      > > rid of it.
      > >
      > > "Security Error: Content at
      > > http://home.hiwaay.net/~ara36/butter...NBandV101.html
      > > may not load data from about:blank."
      > >
      > > Thanks!![/color]
      >
      > This message occurs when a frame tries to access properties of another
      > frame located in a different domain. This is the case here because you
      > have one frame in the domain hiwaay.net trying to access properties of a
      > blank frame (which is local, thus in another domain).
      >
      > You have probably somewhere in your butterfliesNBan dV101 file an attempt
      > to read or set a property of the blank frame. Without further code, it's
      > impossible to say what exactly you're doing.
      >
      > Try testing this page in Mozilla, you might get a better error message
      > (with line number), though I cannot be 100% sure.
      >
      > HTH,
      >
      > Laurent[/color]

      ---
      I am not using frames.

      Comment

      • Albert Spencil

        #4
        Re: Please ID this JavaScript error message

        "Laurent Bugnion, GalaSoft" <galasoft-LB@bluewin.ch> wrote in message news:<3ff99de9$ 1_3@news.bluewi n.ch>...[color=blue]
        > Hi,
        >
        > Albert Spencil wrote:
        >[color=green]
        > > This error shows when I check Netscape's "javascript :" . Doesn't seem
        > > to present a problem as the site works OK. Still I would like to get
        > > rid of it.
        > >
        > > "Security Error: Content at
        > > http://home.hiwaay.net/~ara36/butter...NBandV101.html
        > > may not load data from about:blank."
        > >
        > > Thanks!![/color]
        >
        > This message occurs when a frame tries to access properties of another
        > frame located in a different domain. This is the case here because you
        > have one frame in the domain hiwaay.net trying to access properties of a
        > blank frame (which is local, thus in another domain).
        >
        > You have probably somewhere in your butterfliesNBan dV101 file an attempt
        > to read or set a property of the blank frame. Without further code, it's
        > impossible to say what exactly you're doing.
        >
        > Try testing this page in Mozilla, you might get a better error message
        > (with line number), though I cannot be 100% sure.
        >
        > HTH,
        >
        > Laurent[/color]

        ---
        I am not using frames.

        Comment

        • HikksNotAtHome

          #5
          Re: Please ID this JavaScript error message

          In article <4a36e8da.04010 81945.8e65b52@p osting.google.c om>, arajunk@hiwaay. net
          (Albert Spencil) writes:
          [color=blue]
          >"Laurent Bugnion, GalaSoft" <galasoft-LB@bluewin.ch> wrote in message
          >news:<3ff99de9 $1_3@news.bluew in.ch>...[color=green]
          >> Hi,
          >>
          >> Albert Spencil wrote:
          >>[color=darkred]
          >> > This error shows when I check Netscape's "javascript :" . Doesn't seem
          >> > to present a problem as the site works OK. Still I would like to get
          >> > rid of it.
          >> >
          >> > "Security Error: Content at
          >> > http://home.hiwaay.net/~ara36/butter...NBandV101.html
          >> > may not load data from about:blank."
          >> >
          >> > Thanks!![/color]
          >>
          >> This message occurs when a frame tries to access properties of another
          >> frame located in a different domain. This is the case here because you
          >> have one frame in the domain hiwaay.net trying to access properties of a
          >> blank frame (which is local, thus in another domain).
          >>
          >> You have probably somewhere in your butterfliesNBan dV101 file an attempt
          >> to read or set a property of the blank frame. Without further code, it's
          >> impossible to say what exactly you're doing.
          >>
          >> Try testing this page in Mozilla, you might get a better error message
          >> (with line number), though I cannot be 100% sure.
          >>
          >> HTH,
          >>
          >> Laurent[/color]
          >
          >---
          >I am not using frames.[/color]

          From your page:

          function butterflies(x)
          {
          var newDoc=
          open('','butter flyWindow','hei ght=360,width=3 50,left=150,top =120,scrollbar
          s=no');
          newDoc.document .open();

          When you use open("" without a filename, it opens a window that has a URL of
          about:blank. That is technically from a different domain than your actual page
          is, and NN4.xx throws it back at you as an error when you try to
          open/write/close it because of the different domain issue.
          --
          Randy

          Comment

          • Thomas 'PointedEars' Lahn

            #6
            Re: Please ID this JavaScript error message

            Albert Spencil wrote:
            [color=blue]
            > "Security Error: Content at
            > http://home.hiwaay.net/~ara36/butter...NBandV101.html
            > may not load data from about:blank."[/color]

            This translates to:

            | Congratulations ! You have just run into the Same Origin Policy.
            | (I)gnore, ask (G)oogle or post to the (n)ewsgroup? _

            Obviously you have not typed G there. Do it now, please.


            PointedEars

            Comment

            • Albert Spencil

              #7
              Re: Please ID this JavaScript error message

              Thanks to all. And, I have no idea what PointedEars is talking about.
              If I am breaking a rule.... please explain.

              Comment

              • Randy Webb

                #8
                Re: Please ID this JavaScript error message

                Albert Spencil wrote:[color=blue]
                > Thanks to all. And, I have no idea what PointedEars is talking about.
                > If I am breaking a rule.... please explain.[/color]

                Some useful tips:

                1) Read the group FAQ http://www.jibbering.com/faq/

                especially section 2_3 : http://www.jibbering.com/faq/#FAQ2_3

                When posting, please quote what you are replying to.

                2) As for TwipPointedEars , ignore the idiot. He seems to have this
                self-annointed impression that he is the all knowing guru on Usenet but
                hes a babbling idiot - ignore him.

                --
                Randy

                Comment

                Working...