error with javascript - please help

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

    error with javascript - please help

    For some reason I am unable to access documents in Javascript.

    eg - tried to register on a site, and when clicked on register, blank
    screen came up with this address:

    "javascript:sub mit_form('toreg ister_form')"

    and "done" in bottom left hand corner.

    Not being very technical minded - anybody know what I have done wrong,
    or is there someting I need to download.

    Many thanks,

    Pat Mahoney
  • kaeli

    #2
    Re: error with javascript - please help

    In article <2eec3242.04011 70155.5358a07@p osting.google.c om>,
    patmahoney@btin ternet.com enlightened us with...[color=blue]
    > For some reason I am unable to access documents in Javascript.
    >
    > eg - tried to register on a site, and when clicked on register, blank
    > screen came up with this address:
    >
    > "javascript:sub mit_form('toreg ister_form')"
    >
    > and "done" in bottom left hand corner.
    >
    > Not being very technical minded - anybody know what I have done wrong,
    > or is there someting I need to download.
    >[/color]

    What browser?

    --
    --
    ~kaeli~
    Jesus saves, Allah protects, and Cthulhu thinks you'd make
    a nice sandwich.



    Comment

    • Pat Mahoney

      #3
      Re: error with javascript - please help

      microsoft internet explorer is my browser



      *** Sent via Developersdex http://www.developersdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      • kaeli

        #4
        Re: error with javascript - please help

        In article <400c1d6c$0$703 02$75868355@new s.frii.net>,
        oatmahoney@btin ternet.com enlightened us with...[color=blue]
        > microsoft internet explorer is my browser
        >
        >[/color]

        What version? Service Pack?
        Help->About Internet Explorer
        I use 6.0.28 SP1

        If you're using anything under 5.5, upgrade if possible.

        Check for errors in the site's script by looking at the lower left hand
        corner of the window for a little yellow exclamation point. If you see
        that, it's the site that has the problem, not your browser. Click on the
        exclamation point for a detailed error message.
        By default, IE will NOT show errors, IIRC. It just stops processing and
        shows the yellow bang.

        If no error exists in the page's code, save the following as test.html
        somewhere in my documents or something.

        ----------
        <html>
        <head>
        <title> New Document </title>
        </head>

        <body>
        <a href="javascrip t:alert('hi'); return false;">say hi</a>
        </body>
        </html>
        ------------

        Open that in IE with File->Open and click on the link.
        Did it work?
        If it doesn't alert a 'hi', you might have script disabled. If it does,
        you might have your security settings too high and other sites can't run
        script.

        We'd have to further debug from there.

        --
        --
        ~kaeli~
        Those who jump off a bridge in Paris... are in Seine.



        Comment

        • Pat Mahoney

          #5
          Re: error with javascript - please help

          Thanks for help so far - I copied your message and saved it as
          test.html - tried to open it in Internet Explorer, but could not find
          the link.

          Pat

          kaeli <tiny_one@NOSPA M.comcast.net> wrote in message news:<MPG.1a760 1425bd08fbb989b 2c@nntp.lucent. com>...[color=blue]
          > In article <400c1d6c$0$703 02$75868355@new s.frii.net>,
          > oatmahoney@btin ternet.com enlightened us with...[color=green]
          > > microsoft internet explorer is my browser
          > >
          > >[/color]
          >
          > What version? Service Pack?
          > Help->About Internet Explorer
          > I use 6.0.28 SP1
          >
          > If you're using anything under 5.5, upgrade if possible.
          >
          > Check for errors in the site's script by looking at the lower left hand
          > corner of the window for a little yellow exclamation point. If you see
          > that, it's the site that has the problem, not your browser. Click on the
          > exclamation point for a detailed error message.
          > By default, IE will NOT show errors, IIRC. It just stops processing and
          > shows the yellow bang.
          >
          > If no error exists in the page's code, save the following as test.html
          > somewhere in my documents or something.
          >
          > ----------
          > <html>
          > <head>
          > <title> New Document </title>
          > </head>
          >
          > <body>
          > <a href="javascrip t:alert('hi'); return false;">say hi</a>
          > </body>
          > </html>
          > ------------
          >
          > Open that in IE with File->Open and click on the link.
          > Did it work?
          > If it doesn't alert a 'hi', you might have script disabled. If it does,
          > you might have your security settings too high and other sites can't run
          > script.
          >
          > We'd have to further debug from there.
          >
          > --[/color]

          Comment

          • kaeli

            #6
            Re: error with javascript - please help

            In article <2eec3242.04012 00903.5f302e66@ posting.google. com>,
            patmahoney@btin ternet.com enlightened us with...[color=blue]
            > Thanks for help so far - I copied your message and saved it as
            > test.html - tried to open it in Internet Explorer, but could not find
            > the link.
            >[/color]

            I'm an idiot. :)

            One more try.

            <html>
            <head>
            <title> New Document </title>
            </head>
            <body bgcolor="white" >
            <p>
            <font color="black">
            <font size="3">
            <a href="javascrip t:alert('hi');" >say hi</a>
            </font>
            </font>
            </p>
            </body>
            </html>

            (oh, if your browser were set to show errors, you'd have seen my error
            immediately at the return statement)

            --
            --
            ~kaeli~
            Dijon vu - the same mustard as before.



            Comment

            • Pat Mahoney

              #7
              Re: error with javascript - please help

              Still no luc - openedd link and it just opened as a web page.

              Any suggestions??

              Pat

              kaeli <tiny_one@NOSPA M.comcast.net> wrote in message news:<MPG.1a772 55b4734916b989b 45@nntp.lucent. com>...[color=blue]
              > In article <2eec3242.04012 00903.5f302e66@ posting.google. com>,
              > patmahoney@btin ternet.com enlightened us with...[color=green]
              > > Thanks for help so far - I copied your message and saved it as
              > > test.html - tried to open it in Internet Explorer, but could not find
              > > the link.
              > >[/color]
              >
              > I'm an idiot. :)
              >
              > One more try.
              >
              > <html>
              > <head>
              > <title> New Document </title>
              > </head>
              > <body bgcolor="white" >
              > <p>
              > <font color="black">
              > <font size="3">
              > <a href="javascrip t:alert('hi');" >say hi</a>
              > </font>
              > </font>
              > </p>
              > </body>
              > </html>
              >
              > (oh, if your browser were set to show errors, you'd have seen my error
              > immediately at the return statement)
              >
              > --[/color]

              Comment

              • kaeli

                #8
                Re: error with javascript - please help

                In article <2eec3242.04012 20842.2ae8a555@ posting.google. com>,
                patmahoney@btin ternet.com enlightened us with...[color=blue]
                > Still no luc - openedd link and it just opened as a web page.
                >
                > Any suggestions??
                >[/color]

                Well, we now know it is your browser having issues and not that site.
                So, next thing is to check your settings.

                I use IE6, and the settings are in a different spot for some stuff than
                5, so let me know if you can't find this.
                Anyways, go to Tools->Internet Options and click on the Security Tab.
                If Internet (the little globe) isn't highlighted, click on it to
                highlight it.
                Check to be sure the setting is NOT at high.
                If the setting is on Custom, click the custom button to show the
                settings.
                Scroll down to Scripting
                Make sure Active Scripting is enabled.

                Let me know if that fixes it.

                Also, you're not using Windows 98 or below with IE6, are you? They
                aren't compatible.

                If you have IE5/6 with Win2000 or XP:
                Did you try repairing IE?
                Open the Control Panel's Add/Remove Programs, click MS Internet
                Explorer to highlight, click the Add/Remove button, select Repair IE.

                Another suggestion for Win2K/XP: reinstall WScriptHost.



                --
                --
                ~kaeli~
                Press any key...NO, NO, NO, NOT THAT ONE!!!!!!



                Comment

                • Pat Mahoney

                  #9
                  Re: error with javascript - please help

                  Thanks for your help so far, but I am afraid not having any luck!

                  "Active scripting" is enabled but not making any difference!

                  Anything else I can do??

                  Pat

                  kaeli <tiny_one@NOSPA M.comcast.net> wrote in message news:<MPG.1a79c e6488cdd563989b 49@nntp.lucent. com>...[color=blue]
                  > In article <2eec3242.04012 20842.2ae8a555@ posting.google. com>,
                  > patmahoney@btin ternet.com enlightened us with...[color=green]
                  > > Still no luc - openedd link and it just opened as a web page.
                  > >
                  > > Any suggestions??
                  > >[/color]
                  >
                  > Well, we now know it is your browser having issues and not that site.
                  > So, next thing is to check your settings.
                  >
                  > I use IE6, and the settings are in a different spot for some stuff than
                  > 5, so let me know if you can't find this.
                  > Anyways, go to Tools->Internet Options and click on the Security Tab.
                  > If Internet (the little globe) isn't highlighted, click on it to
                  > highlight it.
                  > Check to be sure the setting is NOT at high.
                  > If the setting is on Custom, click the custom button to show the
                  > settings.
                  > Scroll down to Scripting
                  > Make sure Active Scripting is enabled.
                  >
                  > Let me know if that fixes it.
                  >
                  > Also, you're not using Windows 98 or below with IE6, are you? They
                  > aren't compatible.
                  >
                  > If you have IE5/6 with Win2000 or XP:
                  > Did you try repairing IE?
                  > Open the Control Panel's Add/Remove Programs, click MS Internet
                  > Explorer to highlight, click the Add/Remove button, select Repair IE.
                  >
                  > Another suggestion for Win2K/XP: reinstall WScriptHost.
                  > http://members.aol.com/pattyoh105/vb_wsh_a.htm
                  >
                  >
                  > --[/color]

                  Comment

                  Working...