rtfm?

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

    rtfm?

    One of the major problems in developing javascript (in contrast to
    developing php) is the lack of one specific place where one could find the
    manual. If I want to know something about php, I go to php.net. If I want to
    know something about javascript, I type a few keywords to google and hit
    search. Something comes up usually. Still, it might be outdated, buggy,
    whatever. So... where can I Read the Fucking Manual? What's the "official"
    place where javascript is entirely documented? Is there a site that will
    explain what will work and what will not work in browser x? And if there is
    one... how could it become The One, the site people instantly go to when
    they think javascript? I mean for HTML/CSS there's w3c.org, for php there's
    php.net... Where's javascript.com?

    --
    "I am pro death penalty. That way people learn
    their lesson for the next time." -- Britney Spears

    eternal.erectio nN0@5P4Mgmail.c om


  • Michael Winter

    #2
    Re: rtfm?

    On 26/06/2005 20:49, Kimmo Laine wrote:
    [color=blue]
    > So... where can I Read the Fucking Manual? What's the "official"
    > place where javascript is entirely documented?[/color]

    The official language specifications[1] are produced by ECMA, but that's
    probably not what you're really looking for...
    [color=blue]
    > Is there a site that will explain what will work and what will not
    > work in browser x?[/color]

    So you actually want information about browser object models? Well,
    that's a little different and harder to answer as they differ quite
    markedly.

    There are standards[2], developed by the DOM Working Group at the W3C,
    but like HTML and CSS, support isn't complete across the board. Then
    there is DOM 0 - the defacto objects and methods like the location
    object and setTimeout function - that don't have any formal definitions.
    However, the old JavaScript 1.3 Reference[3] from Netscape comes fairly
    close.

    Knowing what works, where comes mainly from experience and looking at
    the documentation released by the various vendors. QuirksMode[4] might
    be useful in some respects, though. So is the group FAQ[5].

    [snip]
    [color=blue]
    > Where's javascript.com?[/color]

    It exists, but I don't think it's as 'definitive' as it claims to be.
    I'd steer clear, personally.

    Mike


    [1]
    <URL:http://www.ecma-international.o rg/publications/standards/Ecma-262.htm>
    [2] <URL:http://www.w3.org/DOM/DOMTR>
    [3]
    <URL:http://devedge-temp.mozilla.or g/library/manuals/2000/javascript/1.3/reference/>
    [4] <URL:http://www.quirksmode. org/>
    [5] <URL:http://www.jibbering.c om/FAQ/>

    --
    Michael Winter
    Replace ".invalid" with ".uk" to reply by e-mail.

    Comment

    • Ivan Marsh

      #3
      Re: rtfm?

      On Sun, 26 Jun 2005 22:49:03 +0300, Kimmo Laine wrote:
      [color=blue]
      > One of the major problems in developing javascript (in contrast to
      > developing php) is the lack of one specific place where one could find
      > the manual. If I want to know something about php, I go to php.net. If I
      > want to know something about javascript, I type a few keywords to google
      > and hit search.
      > Something comes up usually. Still, it might be outdated, buggy,
      > whatever. So... where can I Read the Fucking Manual? What's the
      > "official" place where javascript is entirely documented? Is there a
      > site that will explain what will work and what will not work in browser
      > x? And if there is one... how could it become The One, the site people
      > instantly go to when they think javascript? I mean for HTML/CSS there's
      > w3c.org, for php there's php.net... Where's javascript.com?[/color]

      Have you tried Netscape's site... the people that invented javascript.

      --
      "Blessed is he who expects nothing, for he shall never be disappointed."
      Benjamin Franklin (I didn't know he was a Buddhist)

      Comment

      • Gus Richter

        #4
        Re: rtfm?

        Ivan Marsh wrote:[color=blue]
        > On Sun, 26 Jun 2005 22:49:03 +0300, Kimmo Laine wrote:
        >
        >[color=green]
        >>One of the major problems in developing javascript (in contrast to
        >>developing php) is the lack of one specific place where one could find
        >>the manual. If I want to know something about php, I go to php.net. If I
        >>want to know something about javascript, I type a few keywords to google
        >>and hit search.
        >>Something comes up usually. Still, it might be outdated, buggy,
        >>whatever. So... where can I Read the Fucking Manual? What's the
        >>"official" place where javascript is entirely documented? Is there a
        >>site that will explain what will work and what will not work in browser
        >>x? And if there is one... how could it become The One, the site people
        >>instantly go to when they think javascript? I mean for HTML/CSS there's
        >>w3c.org, for php there's php.net... Where's javascript.com?[/color]
        >
        >
        > Have you tried Netscape's site... the people that invented javascript.[/color]

        Netscape's DevEdge was pulled by Netscape/AOL.

        Mozilla's DevMo has mirrored DevEdge:
        <http://devedge-temp.mozilla.or g/index_en.html>
        Expect DevMo to eventually be the best source.

        Sun seems to be archiving some of their documentation:
        <url: http://docs.sun.com/>

        You can also find archives at:
        <http://web.archive.org/web/20030805065555/http://devedge.netscap e.com/>

        --
        Gus

        Comment

        Working...