Document Object Model

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

    Document Object Model

    Hi,
    I am looking for a reference to the Document Object Model interface for
    Javascript, preferably in HTMLHELP format.
    Do you know of any such reference?
  • Paul R

    #2
    Re: Document Object Model

    Rob wrote:[color=blue]
    > I am looking for a reference to the Document Object Model interface for
    > Javascript, preferably in HTMLHELP format.[/color]

    DOM 2 is specified officially at:


    Microsoft provides HTML Help for its XML parser that includes a DOM
    reference:

    Comment

    • Michael Winter

      #3
      Re: Document Object Model

      Paul R wrote:

      [snip]
      [color=blue]
      > DOM 2 is specified officially at:
      > http://www.w3.org/TR/DOM-Level-2-Core[/color]

      Correction: DOM 2 Core is specified at that address. There are other
      modules not limited to HTML, Style and Events. It would be simpler to
      direct the OP to the DOM Technical Reports index:
      <URL:http://www.w3.org/DOM/DOMTR#dom2>

      [snip]

      Mike

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

      Comment

      • Rob

        #4
        Re: Document Object Model

        Michael Winter wrote:[color=blue]
        > Paul R wrote:
        >
        > [snip]
        >[color=green]
        >> DOM 2 is specified officially at:
        >> http://www.w3.org/TR/DOM-Level-2-Core[/color]
        >
        >
        > Correction: DOM 2 Core is specified at that address. There are other
        > modules not limited to HTML, Style and Events. It would be simpler to
        > direct the OP to the DOM Technical Reports index:
        > <URL:http://www.w3.org/DOM/DOMTR#dom2>
        >
        > [snip][/color]

        I am aware of these specifications. However Javascript seems to have a
        different naming convention for using the interface. For example no get
        or set to prefix accesor methods.

        Comment

        • Paul R

          #5
          Re: Document Object Model

          Rob wrote:[color=blue]
          > Michael Winter wrote:[/color]
          <snip>[color=blue][color=green]
          >>
          >> Correction: DOM 2 Core is specified at that address. There are other
          >> modules not limited to HTML, Style and Events. It would be simpler to
          >> direct the OP to the DOM Technical Reports index:
          >> <URL:http://www.w3.org/DOM/DOMTR#dom2>
          >>
          >> [snip][/color]
          >
          >
          > I am aware of these specifications. However Javascript seems to have a
          > different naming convention for using the interface. For example no get
          > or set to prefix accesor methods.[/color]

          Each spec. lists an ECMAScript (JavaScript) binding; for instance:

          Comment

          • Rob

            #6
            Re: Document Object Model

            Paul R wrote:[color=blue]
            > Rob wrote:[color=green]
            >> I am aware of these specifications. However Javascript seems to have a
            >> different naming convention for using the interface. For example no
            >> get or set to prefix accesor methods.[/color]
            >
            >
            > Each spec. lists an ECMAScript (JavaScript) binding; for instance:
            > http://www.w3.org/TR/DOM-Level-2-Cor...t-binding.html[/color]

            Ahhhh! I overlooked this. Thanks!

            Comment

            Working...