Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

This function moves many elements at once.  The elements are found in a rectangular region identified by rows and columns.

...

Code Block
javascript
javascript

// move DIV elements in the specified region 100 pixels down and to the right
massMove(10, 20, 10, 70, 100, 100, "DIV");

// move all elements in the specified region 100 pixels down and to the right
massMove(10, 20, 10, 70, 100, 100)

...