Not signed in (Sign In)

SkillShare - A place to discuss Web Standards and Web Design topics

Categories

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthorSam
    • CommentTimeMar 31st 2006
     permalink
    Hello mates,
    Can any 1 explain to me why this annoying JS shows up in my source code in the <head> and after the </body> tags :

    <script language="JavaScript">
    <!--

    function SymError()
    {
    return true;
    }

    window.onerror = SymError;

    var SymRealWinOpen = window.open;

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

    window.open = SymWinOpen;

    //-->
    </script>

    The problem is my doc. fails when trying to validate it !
    Thanks.
    •  
      CommentAuthornifkin
    • CommentTimeMar 31st 2006
     permalink
    Well, I'm not sure why it would be there, but this is what's causing it to fail validation:

    <script language="JavaScript">

    should be

    <script type="text/javascript">
    •  
      CommentAuthorSam
    • CommentTimeMar 31st 2006
     permalink
    Well, nifkin if I may ask how do you know?! :)
    • CommentAuthorKanashii
    • CommentTimeMar 31st 2006
     permalink
    Your using a Symantec Product and it is inserting this in every page you view. It has to do with their Ad blocking or something I would assume. I know ZoneAlarm does something similar to this. Try looking around in Symantec and see if you can disable it. If not it won't affect others seeing your page, Symantec dynamically adds it to each page coming to your browser.
    •  
      CommentAuthorSam
    • CommentTimeMar 31st 2006
     permalink
    Holly cow you damn right Kanashii :)

    I disabled the damn Norton and it's gone ! , I was going nuts, now another question:

    Can script language and script type be used with xhtml1-strict doc.?
    • CommentAuthorKanashii
    • CommentTimeMar 31st 2006
     permalink
    language can't but you must use type : )
Add your comments
    Username Password
  • Format comments as (Help)