1. accessKey
    tags property: A, APPLET, BODY, BUTTON, EMBED, FIELDSET, INPUT, LABEL, LEGEND, MARQUEE, OBJECT, SELECT, TEXTAREA. , specifies a shortcut key: digit (0-9) or Latin letter (az). Similar to clicking on a tag.
    accesKey=
  2. action
    property of the tag FORM , specifies a file or script on the server, if not specified, the address of the source document is used.

  3. activeElement
    property of the DOCUMENT object. Returns a link to the active element (tag: INPUT, TEXTAREA, BODY).
    document.activeElement
    EXAMPLE: show the html-code of the currently active element:
    alert(document.activeElement.outerhtml)
    EXAMPLE: set a link to an active element and show its html-code:
    set devae=document.activeElement
    alert(devae.outerhtml)

  4. align
    1.tags property: APPLET, COL, COLGROUP, DIV, FIELDSET, H1-H6, HR, P, TABLE, TBODY, TD, TFOOT, TH, THEAD, TR. Sets the alignment of the internal content ( text and / or tags).
    align=
    2. property of the tag CAPTION . Sets the alignment of the internal content (text, tags) of the table heading.
    align=
    default
    1.1
    align=center
    1.1
    align=right
    1.1
    align=left
    1.1
    align=top
    1.1
    align=bottom
    1.1
    3.Property of the LEGEND tag. Sets the way to align the internal content of the signature (text, tags) in the frame, horizontally.
    align =
    default
    align=left
    align=right
    align=center
    4.Property of tags: EMBED, IFRAME, IMG, OBJECT . Specifies the horizontal and vertical alignment of an object with respect to text and / or surrounding objects.
    align =
    As an example, aligning a picture relative to text and a button:
    By inheritance align = baseline
    By horizontals align = left
    By horizontal align = right
    By vertical align = asbottom
    By vertical align = bottom
    By vertical align = middle
    By vertical align = asmiddle
    By vertical align = top
    By vertical align = texttop

  5. alinkColor
    1. property of the tag BODY , sets the color of active links on the page.
    alink=
    2. property of the DOCUMENT object, sets, returns the color of active links on the page.
    window.document.alinkColor=red
  6. alt
    tag property: AREA, IMG, EMBED , for IMG, if SRC is not set, this is the text inside the frame and the tooltip.


  7. altKey
    object property EVENT , returns true if the ALT key was pressed when the event was raised, or false if it was not pressed.
    window.event.altKey
  8. appCodeName
    property of the Navigator object, returns the name of the browser program.
    navigator.appCodeName
  9. appName
    property of the Navigator object, returns the name of the browser.
    navigator.appName
  10. appVersion
    property of the Navigator object, returns the browser version.
    navigator.appeVersion
  11. balance
    property of the BGSOUND tag. Sets, returns the ratio of the volume of the left and right channels for background music.

  12. behavior
    property of the tag MARQUEE , specifies how the text scrolls in this object. The default value for the SCROLL.
    property is behavior =
  13. bgcolor
    property:
    1. tags: BODY, MARQUEE, TABLE, TBODY, TD, TFOOT, TH, THEAD, TR . Sets the background color of an object.
    bgcolor =
    2. of the DOCUMENT object, sets, returns the background color of the page.
    window.document.bgColor="green"
  14. bgproperties
    This is a property of the BODY tag. The background-attachment property applies.
    background-Attachment:
  15. body
    property of the DOCUMENT object. Returns a read-only reference to the BODY object (BODY tag).
    window.document.body
  16. border tags property: FRAMESET, IFRAME, IMG, TABLE, Sets, returns the width of the frame in pixels.

  17. bordercolor
    tags property: FRAME, FRAMESET, IFRAME, TABLE, TD, TH, TR. Sets the color of all lines of the object frame.
    Bordercolor =
  18. borderColorDark
    tag property: TABLE, TD, TH, TR , sets the color for the right and bottom line of the object border for a 3-dimensional frame.
    borderColorDark =
    Table
    1 2
    1.1 1.2

  19. borderColorLight
    tag property: TABLE, TD, TH, TR , sets the color for the left and top lines of the object border for a 3-dimensional frame.
    borderColorLight =
    Table
    12
    1.11.2

  20. bottomMargin
    property of the BODY tag, sets or returns the bottom padding for the entire page, overrides the default padding.

  21. bufferDepth
    property of the SCREEN object, returns the buffer usage for storing the "second screen".
    window.screen.bufferDepth
  22. button
    object property EVENT , returns the number of the mouse button that triggered the event.
    window.event.button
  23. cancelBubble
    object property EVENT , specifies the completion of the event at the object event, which is processed by the script in which this property is set. Events of objects that are a container for the object in which the property is set do not occur. the property is set only in scripts to true.
    window.event.cancelBubble=true
  24. cellPadding
    property of the TABLE tag, sets the distance between the border of the table cell and its content.
    Table
    1 2
    1.1 1.2
    2.1 2.2
    Table
    1 2
    1.1 1.2

  25. cellSpacing
    property of the tag TABLE , sets the distance between cells in the table.
    Table
    1 2
    1.1 1.2
    2.1 2.2
    Table
    1 2
    1.1 1.2

  26. charset
    property of the tag META , returns or sets the character set of the document.

  27. checked
    tag property INPUT (type = radio, checkbox) . Sets or gets the selection state for switches.

    The selection is set from the script:
    object.checked = true
    The script is clearing the selection:
    object.checked = false
  28. classid
    OBJECT tag property:
    1. sets the object class identifier in the tag:

    2. returns the object class identifier in the script:
    object.classid
  29. className
    property of many tags , specifies the class to associate with the style sheet (STYLE tag).

    1. setting a property in the
    tag
    2. setting property from script
    object.lassName = "class_name"
  30. clear:
    clear:
  31. client
    reference to the NAVIGATOR object.
    window.client
  32. clientHeight
    property of tags: BODY, FIELDSET, TABLE, CAPTION, DIV, LEGEND, MARQUEE, TD, TEXTAREA , returns the height of the object, excluding decoration (padding, scroll bars, etc.).
    object.clientHeight
  33. clientWidth
    tag property: BODY, FIELDSET, TABLE, CAPTION, DIV, LEGEND, MARQUEE, TD, TEXTAREA , returns the height of the object excluding decoration.
    object.clientWidth
  34. clientX
    object property EVENT , returns the X coordinate of the object excluding decoration.
    window.event.clientX
  35. clientY
    object property EVENT , returns the Y coordinate of the object excluding decoration.
    window.event.clientY
  36. closed
    property of the WINDOW object, returns true if the window is closed.
    window_object.closed
  37. code
    tags property: APPLET, EMDED, OBJECT , for APPLET sets the name of the file containing the compiled JAVA class.

  38. codeBase
    tag property: APPLET, EMBED, OBJECT , sets the url of the object implementation in the code.

  39. codeType
    property of the OBJECT tag, sets the type of code for an external object.

  40. color
    tag property: BASEFONT, FONT, HR , sets and returns the color of text or line
    color =
  41. colorDepth
    property of the SCREEN object, specifies the number of bits per pixel for the user's device or video buffer.
    window.screen.colorDepth
  42. cols
    1. tag property TABLE , sets the number of columns in the table.

    2. property of the tag TEXTAREA , sets, returns the width of the object in characters regardless of the size of characters. Valid if STYLE: width, height attributes are missing.

    3. property of the FRAMESET tag. Specifies the number and width of inner frames and / or framesets in a frameset.

    Values ​​entered: 20, 25%, *.
    The number of values ​​specifies the number of frames, or framesets, within a frameset tag. The values ​​themselves define the width of these frames and / or framesets.
  43. colSpan
    tag property: TD, TH , sets the number of columns in the table that this cell should contain.
    Table
    colspan = 2 2
    11 22
    1.1 1.2
    Table
    1 2
    colspan = 2 1.2
    2.1 2.2

  44. compact
    property of the DL tag. Specifies the compaction of the list by removing spaces.

    1. setting the compaction in the tag

    2. undo delete Remove COMPACT from the tag.
    3. setting compaction from script
    dl.compact_object = true
    4. canceling compaction from script
    dl.compact_object = false
  45. complete
    indicates when the page content has loaded.
  46. content
    property of the tag META , sets and returns data named in the NAME attribute of the same tag.

  47. cookieEnabled
    property of the object NAVIGATOR , returns true if there is a possibility of using cookies in the browser.
    window.navigator.cookieEnabled
  48. coords
    property of the AREA tag, specifies in pixels the relative coordinates that, together with the SHAPE attribute, define the shape of the active area of ​​the client's map.

    An example of using the coords property in the context of the required environment (see the full example below):
    < IMG src = "htag/map.gif" useMap = #1> < MAP name = 1>
    < AREA title = "this is an area rectangle" shape = RECT target = _blank coords = 18,31,93,100 href = "ac.htm" >
    < AREA title = "this is a circle area" shape = CIRCLE target = _blank coords = 161,65,31 href = "ac.htm" >
    < AREA title = "this is a triangle area" shape = POLY target = _blank coords = 300, 90,214,90,251,20 href = "ac.htm" >
    < / MAP >

  49. cssText
    property of the tag STYLE , sets the text value of the TYPE attribute.

  50. ctrlKey
    Object property EVENT , returns true if the "Ctrl" key was pressed when the event occurred.
    window.event.ctrlkey
  51. data
    property of the tag OBJECT , sets the url for linking to the data used by the object.

  52. dataFld
    tags property: DIV, IFRAME, IMG, LABEL, MARQUEE, OBJECT, SELECT, SPAN, INPUT, PARAM, TABLE, TEXTAREA . Specifies the column or field name of the source data for an object associated with this object.

  53. dataFormatAs
    tag property: MARQUEE, DIV, LABEL, INPUT, PARAM, SPAN . Specifies the format of the data.
    dataFormatAs =
  54. dataPageSize
    property of the tag TABLE , sets the maximum number of records displayed simultaneously on the page.

  55. dataSrc
    tag property: A, APPLET, BUTTON, DIV, FRAME, IFRAME, IMG, INPUT, LABEL, IFRAME, IMG, MARQUEE, OBJECT, SELECT, SPAN, TABLE, TEXTAREA, PARAM .
    Sets data source of an object in the form of its identifier for data binding.

  56. defaultChecked
    Property of the INPUT tag (type = checkbox, radio). Returns true if the object is selected by default (the CHECKED property is included in the tag).
    object_INPUT.defaultChecked
  57. defaultSelected
    property of the tag OPTION . Returns true if the object is selected by default (the SELECTED property is introduced in the tag).
    option_option.defaultSelected
  58. defaultStatus
    object property WINDOW , sets, returns the default message text in the browser status bar.
    window.defaultStatus="hi !"
  59. defaultValue
    tag property INPUT (type = file, password, text) .
    Returns the default text in the input field (value of the VALUE property).
    object_INPUT.defaultValue
  60. description
    property of the MIMETYPE object (an element of the MIMETYPES collection of the NAVIGATOR object).
    Returns the default text in the status bar, at the bottom of the browser window.
    window.navigator.mimetypes(number).description
  61. dialogArguments
    property of a WINDOW object opened as a dialog box, returns the arguments passing through that dialog box as an array.
    window.dialogArguments
  62. dialogHeight
    a property of a WINDOW object opened as a dialog box sets or returns the height of that dialog box.
    window.dialogHeight
    For setting the value of this property when a window is opened, see the showModalDialod section of the Methods section.
  63. dialogLeft
    a property of a WINDOW object opened as a dialog box sets or returns the X coordinate of that dialog box.
    window.dialogLeft
    For setting the value of this property when a window is opened, see the showModalDialod section of the Methods section.
  64. dialogTop
    a property of a WINDOW object opened as a dialog box sets or returns the Y coordinate of that dialog box.
    window.dialogTop
    For setting the value of this property when a window is opened, see the showModalDialod section of the Methods section.
  65. dialogWidth
    a property of a WINDOW object opened as a dialog box sets or returns the width of that dialog box.
    window.dialogWidth
    For setting the value of this property when a window is opened, see the showModalDialod section of the Methods section.
  66. direction
    property of the tag MARQUEE , sets the direction of movement of the text.
    direction =
  67. disabled
    1.Tags property: BUTTON, INPUT, LINK, OBJECT, SELECT, STYLE, TEXTAREA . Specifies whether the object is unavailable (by the presence of the word DISABLED in the tag) or available (by the absence of the word DISABLED in the tag). Returns true if the object is not available and false if available.

    Inaccessibility is set from the script:
    object.disabled = true
    Inaccessibility is reset from the script:
    object.disabled = false

    2. property of the STYLESHEET object. Specifies whether the object is unavailable (by the presence of the word DISABLED in the corresponding STYLE tag) or available (by the absence of the word DISABLED in the tag). Returns true if the corresponding STYLE object is not available and false if available.
    document.stylesheets (number) .disabled
    Inaccessibility is set from the script:
    document.stylesheets (number) .disabled = true
    Inaccessibility is reset from the script:
    document.stylesheets (number) .disabled = false
  68. document
    property of the WINDOW object and many tags . Returns a read-only reference to the document.
    child of the window object window.document
    document.document
  69. domain
    property of the DOCUMENT object. Sets or returns the domain of a document to protect or identify.
    window.document.domain
  70. duration
    property of the FILTER object (an element of the collection of the FILTERS tag), sets the duration of the process of changing the state of a dynamic filter in milliseconds. Many tags can have a collection of filters.

    1. task from scripts:
    object.filters (filter_number) .duration = 1
    2. setting in the tag (in the STYLE attribute, in the FILTER property):

    For more details with examples, see the FILTER property.
  71. dynsrc
    property of the tag IMG , sets the address of the video clip data.

  72. enabledPlugin
    property of the MIMETYPE object (an element of the MIMETYPES collection of the NAVIGATOR object), returns a reference to an embedded object that can handle this object.
    window.navigator.mimetypes (number) .enabledPlugin
  73. encoding
    tag property FORM:

    1. sets the type of encoding in the script to apply to the content of the form at startup:
    enctype = ""
    2. returns encoding type in scripts:
    form_enctype_object
  74. event
    1. property of tags having events Specifies:
      1. name of the event handler program.
        event_name = "function name"
      2. contains the script handler code
        event_name = "script code" To view and insert event_name, click the EVENTS list.
    2. property of the WINDOW object. Returns a reference to the global EVENT object.
      window.event

  75. face
    the tag property BASEFONT, FONT . Specifies the font type.

    face=
  76. fgcolor
    property of the DOCUMENT object. Sets, returns the color of the page text.
    window.event.fgcolor = "red"
    To define the color number, click the color setting window on the taskbar.
  77. form
    tag property: BUTTON, INPUT, SELECT, TEXTAREA.
    form=
    By default, the tag belongs to the form inside which is.
  78. frame
    property of the tag TABLE . Specifies the appearance of the table border.
    frame=
    frame=below
    12
    1.11.2
    frame=box
    12
    1.11.2
    frame=insides
    12
    1.11.2
    frame=lhs
    12
    1.11.2
    frame=vdides
    12
    1.11.2
    frame=rhs
    12
    1.11.2
    frame=void
    12
    1.11.2
    frame=above
    12
    1.11.2

  79. frameBorder
    tags property: FRAME, FRAMESET, IFRAME . Specifies the appearance of the frame border.
    frameBorder =
  80. frameSpacing
    tag property FRAMESET, IFRAME . Specifies a number in pixels between frames in a set.

  81. fromElement
    property of the EVENT object. Returns a reference to the object from which the mouse cursor left. the property is available only in scripts event handlers: onmouseover, onmouseout.
    window.event.fromElement
  82. hash
    property of the LOCATION object, tags: A, AREA , returns the string that follows the # character in url.
    window.location.hash
    object.hash
  83. height tags property: EMBED, IFRAME, IMG, MARQUEE, OBJECT, TABLE, TD , sets, returns the height of the object in pixels.

  84. hidden
    property of the tag EMBED . Sets the invisibility of an object.

    Attribute is set from script:
    object_embed.hidden = true
    The attribute is cleared from the script:
    object_embed.hidden = false
  85. history
    property of the WINDOW object, returns a reference to the child HISTORY object.
    window.history
  86. host
    property of the LOCATION object, tags: A, AREA , returns the host.port part of the address.
    location.host
    object.host
  87. hostname
    object property LOCATION tags: A, AREA , returns the hostname in the address.
    location.hostname
    object.hostname
  88. href
    property:
    1. object LOCATION , returns the full url as a string.
    location.href
    2. of a STYLESHEET object, returns the full url of the LINK tag that imported the stylesheet into the corresponding STYLE tag. See section "STYLE ~ Importing Stylesheet".
    window.document.stylesheets (number) .href
    where "number" is a sequential number from 0 of the STYLE tag on the page.
    3. tags: A, AREA, LINK , sets and returns url as a string

  89. hspace
    tag property: EMBED, IFRAME, IMG, MARQUEE . Specifies the horizontal spacing or padding between adjacent objects in pixels.


  90. htmlFor
    1.tag property SCRIPT:
    1. specifies in the tag the object for which the event handler is created.
      for = object_id
    2. sets (modifies) in the script the object for which the event handler is created.
      htmlFor = "object_id"

    2. property of the tag LABEL , sets, returns the name (value of the NAME attribute) of the INPUT tag, which the LABEL tag (label or heading) is intended for.

  91. htmlText
    object property TEXTRANGE , returns the contents of the object in the form of text and html-code.
    textrange.htmlText object
  92. httpEquiv
    tag property META :
    1. Sets the tag to describe the content of the object.

    2. Sets (modifies) a description of the content of an object in scripts.
    meta_object.httpEquiv = ""
  93. id
    1. property of many tags ... Specifies the identifier for the tag. If there are multiple tags with the same identifier, and using the identifier as a reference to an object with that identifier, an error occurs. The identifier must start with the characters: AZ, or: az, and can consist of the following characters: (A-Za-z), digits (0-9), minus ("-"), underscore ("_"), colon ( ":"), dot (".").

    2. property of the STYLESHEET object, returns the id of the corresponding STYLE tag.
    window.document.stylesheets (number) .href
    where "number" is a sequential number from 0 of the STYLE tag on the page.
  94. ideterminate
    property of the INPUT tag, specifies the style for form elements such as checkboxes and radio buttons when they are in an undefined state.

  95. index
    specifies the ordinal number of the element in the list.
  96. innerHtml
    property of many tags , sets or returns the internal html-code of the whole object.
    object.innerHtml
  97. innerText
    property of many tags , sets or returns only the text within the object.
    object.innerText IE only
  98. isMap
    property of the tag IMG , sets the picture as a map.

    Attribute is set from script:
    object_img.isMap = true
    The attribute is cleared from the script:
    img.isMap_object = false
  99. isTextEdit
    property of many tags , returns true for objects that can be used to create a TEXTRANGE object.
    object.isTextEdit
  100. keyCode
    object property EVENT , returns or changes the ascii code of the key pressed.
    window.event.keyCode
    For example, to cancel entering the code of a pressed keyboard key:
    window.event.keycode = ""
  101. lang
    property of many tags , specifies the ISO language description for the object.

  102. language
    property of many tags , specifies the programming language of the event handler in the object itself or the language of the SCRIPT tag, by default JAVASCRIPT. It is recommended to explicitly set the programming language.
    language=
  103. lastModified
    property of the DOCUMENT object. Returns the date the page was last modified.
    window.document.lastModified
  104. leftMargin
    property of the tag BODY . Sets or returns the left padding, in pixels, for the page, overrides the default padding.

  105. length
    1. property of all collections , returns the number of items in the collection.
      collection.length
      eg the total number of tags on the current page: window.document.all.length.
      To view the collections and their associations, click the "collections" list.
    2. property of the SELECT tag, returns the number of internal OPTION tags (the number of list items).
      object_select.length

  106. linkColor
    property:
    1. object DOCUMENT . Sets, returns the color of unvisited hyperlinks on a page.
    window.document.linkColor = "red"
    2. BODY tag. Sets, returns the color of unvisited hyperlinks on a
    page linkColor =
  107. location
    object property WINDOW , returns the full url of the document.
    window.location
  108. loop
    tags property: BGSOUND, MARQUEE, IMG . Specifies the number of times audio or video clips play or text passes.

  109. lowsrc
    property of the IMG tag. Sets the url of a low-resolution image.

  110. map
    sets an object-based image map
  111. marginHeight
    tags property: FRAME, IFRAME . Sets the top and bottom margins for a page, or block of text.

  112. marginWidth
    tags property: FRAME, IFRAME . Sets the left and right margins for a page or block of text.

  113. maxLength
    tag property INPUT (type = password, text) . Sets or returns the maximum number of characters to enter into an object.

  114. method
    property of the FORM tag. Specifies the method for sending data to the server from a get or post form.
    method =
    The "GET" method forces the browser to encode the information as a URL and send it to the server in that form. On the server, this value is assigned to a specific environment variable. This method limits the amount of data transferred (no more than a few hundred bytes).
    The "POST" method forces data to be transferred using standard I / O procedures. This method is preferred over the "GET" method.
  115. methods
    property of the A tag. Specifies information about the functions performed by the object.

  116. mineTypes
    object property NAVIGATOR , returns a reference to the mimetypes collection, in IE returns an empty collection (window.navigator.mimetypes.legth = 0).
    window.navigator.mimeTypes.length
  117. multiple
    property of the tag SELECT . Specifies the ability to select multiple items in a list. This property is effective if the value of the SIZE property is greater than one.
    .
    The property is set from the script:
    object_select.multiple = true
    The property is reset from the script:
    object_select.multiple = false

  118. name
    1.Tags property: A, APPLET, BUTTON, EMBED, FORM, FRAME, IFRAME, INPUT, IMG, MAP, OBJECT, PARAM, SELECT, META, TEXTAREA:
    1-1. Sets the tag name to the tag:

    1-2. Returns tag name in scripts:
    object.name
    2. property of the MIMETYPE object (an element of the MIMETYPES collection of the NAVIGATOR object), specifies the name of the element, bookmark or applet.
    window.navigator.mimetypes (number) .name = "name"
    3. property of the WINDOW object, sets the title of the window title.
    window.name
    4. property of the WINDOW object. Returns a read-only reference to a NAVIGATOR object.
    window.navigator
  119. navigator
    browser link
    Window.navigator
  120. noHref
    the property of the AREA tag, specifies the lack of response to a mouse click on an object.

  121. noResize
    tags property: FRAME, IFRAME . Specifies that the user cannot resize the frame.
    noResize =
  122. noShade
    property of the HR tag. Specifies no 3D shadow for a horizontal line.

    The property is set from the script:
    object_hr.noShade = true
    The property is reset from the script:
    object_hr.noShade = false
  123. noWrap
    tag property: TD, TH . Specifies that text cannot be automatically wrapped based on size.

    The property is set from the script:
    td_object, th.noWrap = true
    The property is reset from the script:
    td_object, th.noWrap = false
  124. offScreenBuffering
    property of the WINDOW object. Sets and returns the use of the video buffer for the document. The default is "auto".
    window.offScreenBuffering
  125. offsetHeight
    the property of many tags , used only in scripts. Returns the full height of the element's content, in pixels, including what is not visible and can be viewed by scrolling.
    object.offsetHeight
  126. offsetLeft
    the property of many tags , used only in scripts. Returns the X coordinate of the left border of the element's content, in pixels, including what is not visible and can be viewed by scrolling.
    object.offsetLeft
  127. offsetParent
    the property of many tags . Returns a reference to the object's container, defining its relative X Y coordinates.
    object.offsetParent
  128. offsetTop
    the property of many tags , used only in scripts. Returns the relative Y coordinate of the top border of the inner object, in pixels, relative to the containing object.
    object.offsetTop
  129. offsetWidth
    the property of many tags , used only in scripts. Returns the full width of the object, including what is not visible and can be viewed by scrolling.
    object.offstWidth
  130. offsetX
    property of the EVENT object. Returns the X coordinate of the mouse cursor, in pixels, relative to its containing element, when an event occurs.
    window.event.offsetX
  131. offsetY
    property of the EVENT object. Returns the Y coordinate of the mouse cursor, in pixels, relative to its containing element, when an event occurs.
    window.event.offsetY
  132. opener
    property of the WINDOW object. Returns a link to the window that opened the current window.
    window.opener
  133. outerHTML
    the property of many tags . Sets or returns the text and HTML code of a tag (object), including the opening and closing tags in the HTML source.
    object.outerHTML
  134. outerText
    the property of many tags . Sets or returns only the text of an element including the opening and closing tags in HTML source.
    object.outerText
  135. owningElement
    property of the collection object STYLESHEETS . Returns the imported stylesheet and references the current one, usually in a LINK tag.
    window.document.stylesheets (number) .owningElement
  136. palette
    tag propertyEMBED.Specifies the palette for an embedded object.

  137. parent
    Property of the WINDOW tag. Returns a reference to the parent window or frame.
    window.parent
  138. parentElement
    property of many tags , used only in scripts. Returns a reference to the parent object, the parent returns zero.
    object.parentElement
  139. parentStyleSheet
    property of the STYLESHEET object (member of the STYLESHEETS collection). Returns the parent style sheet, or zero for independent.
    window.document.stylesheets (number) .parentStyleSheet
  140. parentTextEdit
    property of many tags , used only in scripts. Returns a reference to the closest parent element that can be used to construct a TEXTRANGE.
    object.parentTextEdit
  141. parentWindow
    property of the DOCUMENT object. Returns a link to the parent window of the document.
    window.document.parentWindow
  142. pathname
    property of the LOCATION object, tags: A, AREA . Returns the name of a file or object after the third / in url.
    window.location.pathname
    object.pathname
  143. plugins
    property of the DOCUMENT object. Returns the collection of connected elements available in the browser, in IE returns an empty collection (window.document.plugins.length is always 0).
    window.document.plugins.length
  144. pluginspage
    property of the tag EMBED . Specifies a connected object to use as an embedded object.

  145. port
    property of the LOCATION object, tags: A, AREA . Returns the port number in url.
    window.location.port
    object.port
  146. protocol
    property of the LOCATION object, tags: A, AREA . Returns the protocol portion of the url string, up to colon.
    window.location.protocol
    object.protocol
  147. readOnly
    tags property: TEXTAREA, INPUT (type = button, checkbox, file, hidden, password, text) . Specifies a prohibition on changing the content of the object.

    1. to set the ban in the tag

    2. to clear the ban in the tag, delete the word READONLY.
    3. to set from script
    object.readOnly = true
    4. to cancel the ban from the script
    object.readOnly = false
  148. readyState
    Property:
    1. of the DOCUMENT object. Returns the current state of the loaded object.
      window.document.readyState
    2. tags: IMG, LINK, OBJECT, SCRIPT, STYLE . Returns the current state of the loaded object.
      readyState object

  149. recordNumber
    tags property: INPUT (type = button, checkbox, file, image, radio, reset, submit, text), FIELDSET, LEGEND, SELECT . Returns the ordinal number of a record in a data-bound table,

  150. recordNumber
    returns the sequence number of the entry in the data-bound table
    bject.recordNumber
  151. recordset
    property of objects: RSD, STD . Returns a recordset if the object is a data source.
    1. Create STD object.
      Sets are created using objects: RDS (Remote Date Service) or STD (Simple Tabular Data)
      For example, create STD:
      & lt; object id = base width = 100 height = 51 classid = "CLSID: 333C7BC4-460F-11D0-BC04-0080C7055A83" >
      <! Field separator comma: >
      < param name = "fileDelim" value = "," >
      <! Data source text file Exampl.txt: >
      < param name = "DataURL" value = "Exampl.txt" >
      <! The first line contains the field names: >
      < param name = "UseHeader" value = true >
      < / object >

      Where is the table-view database this, Exampl.txt text file with the following content:
    2. Binding of recordset data to tags: INPUT, SELECT, TEXTAREA, MARQUEE, DIV, SPAN is performed by setting properties: DATASRC = "#STD_object_id" (OBJECT tag) and DATAFLD = "field_name". In this case, these tags receive the data of the record to which the pointer is set. After the tags are loaded, the pointer is set to the first record.
      For example:
      < input type = text datasrc = "#base" datafld = "Name" >
    3. Recordset properties:
    4. base.recordset.bof returns true if the pointer is on the first record
    5. base.recordset.eof returns true if the pointer is on the last record
    6. Recordset methods:
    7. base.recordset.movePrevious move the pointer to the previous record;
    8. base.recordset.moveNext move the pointer to the next record;
    9. base.recordset.moveFirst move the pointer to the first record;
    10. base.recordset.moveLast move pointer to last record.

  152. referrer
    property of the DOCUMENT object. Returns the url of the page that called the current one.
    window.document.referrer
  153. rel
    tags property: A, LINK . Specifies a description of the content of the document referenced by the HREF tag, relative to the current document.
    rel =
  154. returnValue
    property of the EVENT object. Sets browser reaction to event by default:
    1. disable reaction
      window.event.returnValue = false
    2. reaction allow
      window.event.returnValue = true

  155. rev
    property of the tag A . Specifies a description of the content of the current document in relation to the document referenced in the HREF link of the A.
    tag rev =
  156. rightMargin
    property of the tag BODY . Sets or returns the right padding for the entire page in pixels, overrides the default padding.

  157. rows
    1. property of the tag TEXTAREA . Sets, returns the number of lines in the text area. Valid if STYLE: width, height attributes are missing.

    2. property of the FRAMESET tag. Specifies the number and height of inner frames and / or framesets in a frameset.

    Values: 20, 25%, *.
    The number of values ​​specifies the number of frames, or framesets, within a frameset tag. The values ​​themselves set the height of these frames and / or framesets.
  158. rowSpan
    tag property: TD, TH . Sets the number of table rows in which the cell should fit.
    Table
    rowspan = 2 2
    11 22
    1.1 1.2
    Table
    12
    rowspan=2 1.2
    2.12.2

  159. rules
    property of the tag TABLE . Sets the appearance of dividing lines in the table.
    rules=
    rules=all
    12
    1.11.2
    rules=cols
    12
    1.11.2
    rules=groups
    12
    1.11.2
    rules=none
    12
    1.11.2
    rules=rows
    12
    1.11.2

  160. screen
    property of the WINDOW object. Returns a read-only reference to the SCREEN object.
    window.screen
  161. screenX
    property of the EVENT object. Returns the horizontal coordinate of the mouse cursor, relative to the screen, when an event occurs.
    window.event.screenX
  162. screenY
    property of the EVENT object. Returns the vertical coordinate of the mouse cursor, relative to the screen, when an event occurs.
    window.event.screenY
  163. scroll
    property of the tag BODY . Sets or cancels scroll bars.
    scroll =
  164. scrolling
    tags property: FRAME, IFRAME . Sets or cancels scroll bars.
    scrolling =
  165. scrollAmount
    property of the MARQUEE tag. Specifies the number of pixels the MARQUEE object crawls in each loop.

  166. scrollDelay
    property of the MARQUEE tag. Specifies the time, in milliseconds, between text cycles in a MARQUEE object.

  167. scrollHeight
    tags property: BODY, DIV, FIELDSET, IMG, LEGEND, MARQUEE, SPAN, TABLE, TEXTAREA .
    Returns the full height of the object in pixels, which is not visible due to scrolling (tags: BODY, TEXTAREA ), or the full height, which has increased due to internal objects (other tags).
    scrollHeight object
  168. scrollLeft
    tag property: BODY, DIV, FIELDSET, IMG, LEGEND, MARQUEE, SPAN, TABLE, TEXTAREA .
    Returns the scrolled horizontal distance in pixels (tags: BODY, TEXTAREA), or increase the width, at the expense of internal objects (other tags).
    scrollLeft object
  169. scrollTop
    tag property: BODY, DIV, FIELDSET, IMG, LEGEND, MARQUEE, SPAN, TABLE, TEXTAREA .
    Returns the scrolled vertical distance in pixels (tags: BODY, TEXTAREA), or height increase, at the expense of internal objects (other tags).
    scrollTop object
  170. scrollWidth
    tag property: BODY, DIV, FIELDSET, IMG, LEGEND, MARQUEE, SPAN, TABLE, TEXTAREA .
    Returns the full width of the object in pixels, which is not visible due to scrolling (tags: BODY, TEXTAREA ), or the full width, which is increased by internal objects (other tags).
    object.scrollWidth
  171. selected
    property of the tag OPTION . Sets one or more selected items in the list or deselects.
    1. highlighting in the OPTION tag


    2. to cancel in the OPTION tag delete the word SELECTED
    3. to extract from script
    option_object.selected = true
    4. to cancel selection from script
    object_option.selected = false
  172. selectedIndex
    property of the tag SELECT . Returns an integer number of the selected item in the list.
    select_select.selectedIndex
  173. selection
    object property DOCUMENT , used only in scripts. Returns a reference to the child SELECTION object. This object defines the properties and methods of the current selection on the page.
    window.document.selection
    For example, return the type of the user-selected area:
    alert (window.document.selection.type)

  174. self
    object property WINDOW , used only in scripts. Returns a link to the current window for working with its properties, methods, events and collections.
    self
    For example, display the name of the current window:
    alert (self.name)

  175. shape
    property of the AREA tag. Sets the appearance of the area on the map.
    shape =
  176. shiftKey
    property of the EVENT object. Returns true when the "shift" key is pressed, at the moment of occurrence of this or that event.
    window.event.shiftKey
  177. size
    property of the following tags:
    1. BASEFONT, FONT a positive or negative number determines the change in the font size relative to the current size;
    2. HR positive number & gt; 0 line width in pixels;
    3. INPUT positive number & gt; 0 the number of characters to enter;
    4. SELECT number = 0.1 specifies single-line select list, number & gt; 0 multi-line select list number of visible lines equal to "number". A multi-select list can only be multi-line.

  178. sourceIndex
    returns the ordinal number of the element in the source data or in the collection all
  179. span
    tags property: COLGROUP, COL:
    1. Specifies the number of columns in the script code to which the properties specified by the COLGROUP or COL tag belong.

    2. Returns the value of the number of columns in scripts:
    object.span
    Table
    1 2 #
    1.1 1.2 001
    2.1 2.2 002
    Table
    1 2 #
    1.1 1.2 001
    2.1 2.2 002

  180. src
    tags property: APPLET, BGSOUND, EMBED, FRAME, IFRAME, IMG, INPUT (type = IMAGE), SCRIPT . Specifies an external source data file for an object.

  181. srcElement
    property of the EVENT object. Returns a reference to the object from which the event started.
    window.event.srcElement
  182. srcFilter
    property of the EVENT object. Returns a link to the filter that generated the onfilterchange event only in the script of the ONFILTERCHANGE event handler.
    window.event.srcFilter
  183. start
    tags property:
    1. IMG sets the moment from which the video clip starts.

    Failed to apply.
    2. sets or returns the starting number in the list.

  184. status
    1. property of the WINDOW object. Specifies the text to be shown in the status bar of the window.
      window.status = "message"
    2. property of the FILTER object (an element of the FILTRS collection). Returns a number specifying the current state of the dynamic filter transition. object.filters (filter_number) .status
      EXAMPLE show the filter state of the devfil object, in the methods window:
      devfil.filters(0).status

  185. style
    the property of many tags . The following items are for your reference. When you insert properties and their values ​​into tags or scripts, the html-code attributes of the STYLE property are automatically inserted.
    1. In tags, sets the values ​​of the properties of the STYLE: object
    2. unique properties
      style = "property: value; property: value; ..."
    3. multivalued properties
      style = "property: value1 ... valueN; ..."
    4. In a script, sets the value of one or more properties of the STYLE object:
    5. unique properties
      object.style.property = value
    6. multivalued properties
      object.style.property = "value1 value2 ..."

  186. suffixes
    MIMETYPES collection of the NAVIGATOR object). Returns a list of file extensions used with this object.
    window.navigator.mimetypes (number).suffixes
  187. tabIndex
    tag property: FIELDSET, INPUT, LEGEND, OBJECT, SELECT, TEXTAREA . Specifies the order in which the focus moves from object to object on the page when Tab is pressed.

  188. tagName
    property of many tags , used only in scripts. Returns the tag name as a string in capital letters.
    object.tagName
  189. target
    property of tags: A, AREA, BASE . Specifies the location of the new window to open for a window or frame.
    target =
  190. text
    1. property of the BODY tag. Sets the color of the page text.
    text =
    2. tag property: OPTION, TEXTRANGE, SCRIPT, TITLE , used only in scripts. Sets, returns the text located inside the object.
    object.text = ""
    3. property of the TEXTRANGE object. Sets, returns the text within a TEXTRANGE.
    object_textrange.text
  191. title
    property:
    1. many tags , specifies the help text for the dropdown.

    2. object DOCUMENT , sets the name of the page when loading, returns the name of the page. Analogue of the text inside the TITLE.
    tag window.document.title = "my page"
  192. toElement
    property of the EVENT object. Returns a reference to an object when the mouse hovers over this object. the property is available only in scripts event handlers: onmouseover, onmouseout.
    window.event.toElement
  193. topMargin
    property of the tag BODY . Sets or returns, in pixels, the top padding for the entire page, overrides the default padding.

  194. trueSpeed
    property of the MARQUEE tag. Sets the scrolling speed of the text in the MARQUEE object compared to IE3.

    The property is set from the script:
    object_marquee.trueSpeed = true
    The property is reset from the script:
    marquee_trueSpeed_object = false
  195. type
    Tag properties:
    0. BUTTON , returns the string "button";
    1. TEXTAREA , returns the string "textarea";
    2. LINK, OBJECT , specifies the link content type, common types are shown in the menu.
    type =
    3. OL, LI, UL defines the type of list item numbering.
    type =
    4. INPUT , specifies the type of controls:
    type =
    5. SELECT , returns "select-one" if the MULTIPLE attribute is not set, and "select-multiple" if it is set.
    object_select.type
    6. property of the EVENT object. Returns the name of the event that occurred, without the "on" prefix.
    window.event.type
    7. property of the SELECTION object. Returns the type of the selected area: "element", "text", "table", "none".
    window.document.selection.type
    8. property of the STYLESHEET object, returns the value of the TYPE attribute of the corresponding STYLE tag. Usually this value is "text/css"
    window.document.stylesheets (number) .type
    where "number" is a sequential number from 0 of the STYLE tag on the page.
    9. property of the SCREEN object. Sets or returns the interval between client screen updates.
    window.screen.updateInterval
    10. property of the DOCUMENT object. Returns the address of the document as a string.
    window.document.url
    11. property of the tag META . Specifies the address to go to another document (redirect).

    12. property of the tag A . Sets the ur-name of the searched document.

  196. updateInterval
    Sets or returns the interval between client screen updates.
  197. useMap
    property of the IMG tag. Sets the painting as a map and links by name with the MAP tag.

  198. userAgent
    property of the NAVIGATOR object. Returns the header sent to the server when exchanging data via the HTTP protocol.
    window.navigator.userAgent
  199. url
    in the tag META link url.
  200. urn
    UR - name of the searched document
  201. vAlign
    tag property: TD, TR, COL, COLGROUP, TBODY, TFOOT, TH, THEAD, CAPTION, LEGEND . Specifies which top or bottom border should be aligned to objects and text that are inside tags.
    1. for tags: TD, TR :
    vAlign =
    Alignment of inner text using the example of the TD tag
    vAlign = baseline vAlign = bottom
    vAlign = center vAlign = top

    2. for tags: COL, COLGROUP, TBODY, TFOOT, TH, THEAD:
    vAlig =
    Aligning inner text using the TH tag as an example
    vAlign = baseline vAlign = bottom
    vAlign = middle vAlign = top
    1.1 1.2

    3. for tag CAPTION
    vAlign =
    vAlign = top
    1 2
    1.1 1.2
    vAlign = bottom
    1 2
    1.1 1.2

  202. value
    1. property of the INPUT tag:
    1-1. sets or returns the button label for type: reset, button, submit
    1-2. sets or returns a value for type: radio, checkbox
    1-3. sets the text in the input field before input and returns the entered text value, for type: password, text

    2. tag property:
    2-1. LI , sets or returns the numeric value stored in the tag.

    2-2. OPTION, PARAM , sets or returns the value stored in the tag.

    3. SELECT tag property. Returns the VALUE property of the first selected inner OPTION tag.
    select_value_object
    4. tag property TEXTAREA. In scripts, sets, returns text.
    textarea_object.value = ""
  203. vlinkColor
    property:
    1. object DOCUMENT . Sets and returns the color of visited links on a page.
    window.document.vlinkColor = "red"
    2. BODY tag. Sets, returns the color of visited hyperlinks on a
    page vlink =
  204. volume
    property of the BGSOUND tag. Sets, returns the current volume of the background sound.

  205. vspace
    tags property: APPLET, EMBED, IFRAME, IMG, MARQUEE . Sets the vertical padding between adjacent objects in pixels.


  206. width
    1. object property SCREEN. Returns the width of the user's screen in pixels. window.screen.width
    2. tag property: EMBED, HR, IFRAME, IMG, MARQUEE, OBJECT, TABLE, TD. Sets, returns the width of an object in pixels.

    3. object property WINDOW. Returns a reference to the window object, analogous to self.
    window.window
  207. wrap
    property of the tag TEXTAREA . Specifies the order in which the text of the TEXTAREA tag wrap to the next line.
    wrap =

  208. x
    property of the EVENT object. Returns the X coordinate of the mouse cursor relative to the parent object or window.
    window.event.x
  209. y
    property of the EVENT object. Returns the Y coordinate of the mouse cursor relative to the parent object or window.
    window.event.y