Specifications

470
markupTagName is the name of the tag that youre checking. It must be one of the following
strings:
"b", "cite", "code", "dfn", "em", "i", "kbd", "samp", "s", "strong", "tt", "u", or
"var".
Returns
A Boolean value that indicates whether the entire selection has the specified character markup.
The function returns false if only part of the selection has the specified markup.
dom.indent()
Availability
Dreamweaver 3
Description
Indents the selection using BLOCKQUOTE tags. If the selection is a list item, this function indents
the selection by converting the selected item into a nested list. This nested list is of the same type
as the outer list and contains one item, the original selection.
Arguments
None.
Returns
Nothing.
dom.insertHTML()
Availability
Dreamweaver 3
Description
Inserts HTML content into the document at the current insertion point.
Arguments
contentToInsert, {bReplaceCurrentSelection}
contentToInsert is the content you want to insert.
bReplaceCurrentSelection is a Boolean value that indicates whether the content should
replace the current selection. If
bReplaceCurrentSelection is false, the content is inserted
after the current selection.
Returns
Nothing.
Example
The following code inserts <b>130</b> into the current document:
var theDOM = dw.getDocumentDOM();
theDOM.insertHTML(’<b>130</b>’);