id="watchcomp.lang.javascript@62fc29b86239eb3c"> Huh?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gimme_this_gimme_that@yahoo.com

    id="watchcomp.lang.javascript@62fc29b86239eb3c"> Huh?

    When an achor tag is defined like this - what might be going on?

    Why would someone assign the id a value associated with a JavaScript
    method? Or is something else going on?

    This comes from a Google Groups web page.

    <a class=st
    id="watchcomp.l ang.javascript@ 62fc29b86239eb3 c">something </a>

    Thanks.

  • Thomas 'PointedEars' Lahn

    #2
    Re: id=&quot;watchc omp.lang.javasc ript@62fc29b862 39eb3c&quot;&gt ; Huh?

    gimme_this_gimm e_that@yahoo.co m wrote:
    When an achor tag is defined like this - what might be going on?
    There is no such thing like "an anchor tag". The code below is an (X)HTML
    anchor (an [X]HTML `a' element without defined `href' attribute value but
    with defined `name' or `id' attribute value), period.
    Why would someone assign the id a value associated with a JavaScript
    method?
    Unknown.
    Or is something else going on?
    Yes.
    This comes from a Google Groups web page.
    Incidentally, at least client-side Google code is strongly recommended
    against as positive Web development reference base around here.
    <a class=st
    id="watchcomp.l ang.javascript@ 62fc29b86239eb3 c">something </a>
    So there is an *invalid* `id' attribute value (the character `@' is not
    allowed in there[1]) that contains the name of this newsgroup, which
    contains the string "javascript ". I wonder how you came to the conclusion
    this would have anything to do with scripting. It would have to contain
    "javascript :" to have even a remote chance of doing that.

    [1] http://www.w3.org/TR/REC-html40/stru...l.html#adef-id


    PointedEars
    --
    Use any version of Microsoft Frontpage to create your site.
    (This won't prevent people from viewing your source, but no one
    will want to steal it.)
    -- from <http://www.vortex-webdesign.com/help/hidesource.htm>

    Comment

    Working...