Function
size all elements of this NodeList. Returns an instance of dojo.Animation
dojo.Animation
// size all divs with class "blah" dojo.query("div.blah").sizeTo({ width:50, height:50 }).play();
Function
slide all elements of this NodeList. Returns an instance of dojo.Animation
dojo.Animation
// slide all tables with class "blah" 10 px dojo.query("table.blah").slideBy({ top:10, left:10 }).play();
Function
highlight all elements of the node list. Returns an instance of dojo.Animation
dojo.Animation
// highlight all links with class "foo" dojo.query("a.foo").hightlight().play();
Function
fade all elements of the node list to a specified opacity
// fade all elements with class "bar" to to 50% opacity dojo.query(".bar").fadeTo({ end: 0.5 }).play();
Function
Wipe all elements of the NodeList to a specified width: or height:
dojo.query(".box").wipeTo({ width: 300px }).play();
Object
Object
Object
Object