Source code issues

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

    Source code issues

    Hi,
    My dad is having an issue with viewing his website. He cannot see the
    animated gif in the top left
    corner. I have checked all his settings and they are fine, So I copied the
    html his Internet Explorer had and noticed a difference in the following
    code. If someone knows what is causing this, please let me know.
    What I see when I view the source code:
    <!-- ImageReady Preload Script (background4.ps d) -->
    <SCRIPT LANGUAGE="JavaS cript">
    <!--

    function newImage(arg) {
    if (document.image s) {
    rslt = new Image();
    rslt.src = arg;
    return rslt;
    }
    }

    function changeImages() {
    if (document.image s && (preloadFlag == true)) {
    for (var i=0; i<changeImages. arguments.lengt h; i+=2) {
    document[changeImages.ar guments[i]].src = changeImages.ar guments[i+1];
    }
    }
    }
    ----------------------------------
    What My dads code looks like:

    <script language="JavaS cript">
    <!--

    function SymError()
    {
    return true;
    }

    window.onerror = SymError;

    var SymRealWinOpen = window.open;

    function SymWinOpen(url, name, attributes)
    {
    return (new Object());
    }

    window.open = SymWinOpen;

    //-->
    </script>

    <SCRIPT LANGUAGE="JavaS cript">
    <!--

    function newImage(arg) {
    if (document.image s) {
    rslt = new Image();
    rslt.src = arg;
    return rslt;
    }
    }

    function changeImages() {
    if (document.image s && (preloadFlag == true)) {
    for (var i=0; i<changeImages. arguments.lengt h; i+=2) {
    document[changeImages.ar guments[i]].src =
    changeImages.ar guments[i+1];
    }
    }


    --
    ---------------------------------------------------------------------------
    All email has been scanned with the latest Norton Antivirus


  • Michael Winter

    #2
    Re: Source code issues

    On Thu, 29 Jan 2004 19:07:25 GMT, GumbyLives <gumbylives_99@ yahoo.com>
    wrote:
    [color=blue]
    > My dad is having an issue with viewing his website. He cannot see the
    > animated gif in the top left corner. I have checked all his settings
    > and they are fine, So I copied the html his Internet Explorer had and
    > noticed a difference in the following code. If someone knows what is
    > causing this, please let me know.[/color]

    [snipped code]

    The added script block, and all the code therein, is introduced by a
    pop-up blocker developed by Symantec (I don't know the name of the
    software). These functions should have nothing to do with the problems
    your father is experiencing.

    You'll have to provide a URI to the page, or more source code.

    Mike

    --
    Michael Winter
    M.Winter@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)

    Comment

    • GumbyLives

      #3
      Re: Source code issues

      the site is www.cyberdadsfamilysites.com

      cheers
      Gumby

      "Michael Winter" <M.Winter@bluey onder.co.invali d> wrote in message
      news:opr2jxibpk 5vklcq@news-text.blueyonder .co.uk...[color=blue]
      > On Thu, 29 Jan 2004 19:07:25 GMT, GumbyLives <gumbylives_99@ yahoo.com>
      > wrote:
      >[color=green]
      > > My dad is having an issue with viewing his website. He cannot see the
      > > animated gif in the top left corner. I have checked all his settings
      > > and they are fine, So I copied the html his Internet Explorer had and
      > > noticed a difference in the following code. If someone knows what is
      > > causing this, please let me know.[/color]
      >
      > [snipped code]
      >
      > The added script block, and all the code therein, is introduced by a
      > pop-up blocker developed by Symantec (I don't know the name of the
      > software). These functions should have nothing to do with the problems
      > your father is experiencing.
      >
      > You'll have to provide a URI to the page, or more source code.
      >
      > Mike
      >
      > --
      > Michael Winter
      > M.Winter@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)[/color]


      Comment

      Working...