Functiondojo.NodeList.slideTo

dojo.require("dojo.NodeList-fx");
defined in dojo/NodeList-fx.js

slide all elements of the node list to the specified place. Returns an instance of dojo._Animation

Usage

function (args) (view source)
parametertypedescription
args  

Examples

Example 1

Move all tables with class "blah" to 300/300:
dojo.query("table.blah").slideTo({
    left: 40,
    top: 50
}).play();