dojo.NodeList.place
<script src="../../js/dojo.js"></script>
defined in dojo/_base/NodeList.js
places elements of this node list relative to the first element matched by queryOrNode. Returns the original NodeList.
parameter | type | description |
---|---|---|
queryOrNode | String|Node | may be a string representing any valid CSS3 selector or a DOM node. In the selector case, only the first matching element will be used for relative positioning. |
position | String | can be one of: * "last"||"end" (default) * "first||"start" * "before" * "after" or an offset in the childNodes property |