Functiondojo.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.

Usage

function (/*String|Node*/ queryOrNode, /*String*/ position) (view source)
parametertypedescription
queryOrNodeString|Nodemay 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.
positionStringcan be one of: * "last"||"end" (default) * "first||"start" * "before" * "after" or an offset in the childNodes property