desc element | SVGDescElement object
Provides a mechanism to store a description of an element.
![]() ![]() |
DOM Information
Inheritance Hierarchy
Members
The SVGDescElement object has these types of members:
Events
The SVGDescElement object has these events.
| Event | Description |
|---|---|
| onload |
Occurs when the browser has fully parsed the element and all of its descendants. |
Properties
The SVGDescElement object has these properties.
| Property | Description |
|---|---|
|
Gets the names of the classes that are assigned to this object. | |
|
Determines if an element can acquire keyboard focus (that is, receive keyboard events) and be a target for field-to-field navigation actions (such as when a user presses the Tab key). | |
|
Gets the nearest ancestor svg element. | |
|
Gets a style object. | |
|
Gets the element that established the current viewport. | |
|
Gets or sets the | |
|
Gets or sets a value that specifies the language that is used in the contents and attribute values of an element. | |
|
Gets or sets a value that indicates whether white space is preserved in character data. |
Standards information
- Scalable Vector Graphics: Document Structure, Section 5.11.5
Remarks
Examples
In the following code example, the desc element is used to define a description of an element. This element can be read programatically to analyze SVG structure. Copy this sample to a text file and save it with the .html file extension. Run it in Internet Explorer 9 to see a greenyellow ellipse.
The element will look like this:
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<svg width="400" height="400">
<ellipse cx="150" cy="100" rx="100" ry="75" fill="greenyellow">
<desc>This is the description of an ellipse.</desc>
</ellipse>
</svg>
</body>
</html>
See also

