Slider.removeItems

Syntax

removeItems();

Description

The removeItems method removes all sliders of the Slider component.

Example

To execute the example, the page must contain the Slider component named slider (see Example of Creating the Slider Component). Remove all sliders and tick marks:

// Remove all sliders
slider.removeItems();
// Remove all ticks
slider.removeTicks();

After executing the example all sliders and ticks of the Slider component are removed:

See also:

 Slider