Announcement

Collapse
No announcement yet.

Errors on my page...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Errors on my page...

    Hi,
    Somebody knows why my browser (Internet Explorer) says there are errors on that page?

    http://es.ictl.com/acatalog/Catalogu...onomode_3.html

    It says a ")" is expected on line 20...

    thanks for your help,
    Mathieu Perino
    ICTL - Liaisons Optiques
    Website: www.ictl.com

    #2
    Its because of the double quotes in this line:

    Code:
    alert("Si vous n'êtes pas client Ictl, Veuillez <a href="http://www.ictl.com/htm/coord.htm">nous contacter</a> pour ouvrir un compte, ou <a href="http://www.ictl.com/index.html">cliquez ici</a> pour vous connecter en tant que visiteur.");
    You have two sets of double quotes instead of one set of double and one set of single quotes. Also, you have HTML code inside an alert box which will just show as plain text. So, replace the above with:

    Code:
    alert("Si vous n'êtes pas client Ictl, Veuillez http://www.ictl.com/htm/coord.htm nous contacter pour ouvrir un compte, ou http://www.ictl.com/index.htm pour vous connecter en tant que visiteur.");
    ...if that translates properly in French
    www.gbradley.co.uk
    Web Development, Actinic Patches, Scripts & more

    Comment


      #3
      you were right .

      I just changed the second set of double quotes into simple quotes :
      <a href='http://www.ictl.com/index.html'>,
      and the error message desappeared.

      thanks
      Mathieu Perino
      ICTL - Liaisons Optiques
      Website: www.ictl.com

      Comment

      Working...
      X