HTMLElement

Module:
html
Inherits from:
Declared In:

Overview

Use the links in the table of contents to the left to access the documentation.



Functions

insertAdjacentElement
insertAdjacentHTML
insertAdjacentText

insertAdjacentElement


Element insertAdjacentElement(
    in DOMString where, 
    in Element element) raises(DOMException); 


insertAdjacentHTML


void insertAdjacentHTML(
    in DOMString where, 
    in DOMString html) raises(DOMException); 


insertAdjacentText


void insertAdjacentText(
    in DOMString where, 
    in DOMString text) raises(DOMException); 

Member Data

children
className
contentEditable
dir
id
innerHTML
innerText
isContentEditable
lang
outerHTML
outerText
tabIndex
title

children


readonly attribute HTMLCollection children; 


className


attribute DOMString className; 


contentEditable


attribute DOMString contentEditable; 


dir


attribute DOMString dir; 


id


attribute DOMString id; 


innerHTML


attribute DOMString innerHTML setter raises(DOMException); 


innerText


attribute DOMString innerText setter raises(DOMException); 


isContentEditable


readonly attribute boolean isContentEditable; 


lang


attribute DOMString lang; 


outerHTML


attribute DOMString outerHTML setter raises(DOMException); 


outerText


attribute DOMString outerText setter raises(DOMException); 


tabIndex


attribute long tabIndex; 


title


attribute DOMString title; 

 

Last Updated: 2009-05-29