inspectSelection()
Description
Refreshes the contents of the text fields based on the attributes of the current selection.
Arguments
maxOrMin
- The
maxOrMinargument is eithermaxormin, depending on whether the Property inspector is in its expanded or contracted state.
Returns
Adobe Dreamweaver expects nothing.
Example
The following example of the inspectSelection() function gets the value of the CONTENT attribute and uses it to populate a form field called keywords:
function inspectSelection(){ var dom = Adobe Dreamweaver.getDocumentDOM(); var theObj = dom.getSelectedNode(); document.forms[0].keywords.value = ¬ theObj.getAttribute("content");}