Class CKEDITOR.dom.element
Defined in: element.js.
Constructor Attributes | Constructor Name and Description |
---|---|
CKEDITOR.dom.element(element)
Represents a DOM element.
|
Field Attributes | Field Name and Description |
---|---|
The native DOM element represented by this class instance.
|
Method Attributes | Method Name and Description |
---|---|
append(node)
NO DOCUMENTATION AVAILABLE
|
|
appendText(text)
NO DOCUMENTATION AVAILABLE
|
|
appendTo(element)
NO DOCUMENTATION AVAILABLE
|
|
<static> |
CKEDITOR.dom.element.getHead()
NO DOCUMENTATION AVAILABLE
|
getId()
NO DOCUMENTATION AVAILABLE
|
|
getName()
The element name.
|
|
The value of the "name" attribute.
|
|
hide()
NO DOCUMENTATION AVAILABLE
|
|
setAttribute(attributeName, value)
NO DOCUMENTATION AVAILABLE
|
|
setAttributes(attributesPairs)
NO DOCUMENTATION AVAILABLE
|
|
setStyle(styleName, value)
NO DOCUMENTATION AVAILABLE
|
|
setText(text)
NO DOCUMENTATION AVAILABLE
|
|
show()
NO DOCUMENTATION AVAILABLE
|
Class Detail
CKEDITOR.dom.element(element)
Since:
3.0
Represents a DOM element.
- Parameters:
- {Object|String} element
- A native DOM element or the element name for new elements.
Field Detail
{Object}
$
The native DOM element represented by this class instance.
NO EXAMPLE AVAILABLE
- Since:
- 3.0
Method Detail
append(node)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- node
- Since:
- 3.0
appendText(text)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- text
- Since:
- 3.0
appendTo(element)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- element
- Since:
- 3.0
<static>
CKEDITOR.dom.element.getHead()
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Since:
- 3.0
getId()
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Since:
- 3.0
getName()
The element name. The name is always full lowercased.
var element = new CKEDITOR.dom.element( 'span' ); alert( element.getName() == 'span' ); // true
- Since:
- 3.0
getNameAtt()
The value of the "name" attribute.
var element = new CKEDITOR.dom.element( document.getElementsByName( 'test' )[0] ); alert( element.getNameAtt() == 'test' ); // true
- Since:
- 3.0
hide()
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Since:
- 3.0
setAttribute(attributeName, value)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- attributeName
- value
- Since:
- 3.0
setAttributes(attributesPairs)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- attributesPairs
- Since:
- 3.0
setStyle(styleName, value)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- styleName
- value
- Since:
- 3.0
setText(text)
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Parameters:
- text
- Since:
- 3.0
show()
NO DOCUMENTATION AVAILABLE
NO EXAMPLE AVAILABLE
- Since:
- 3.0