JavaScript/jQuery Switch - Overview

The Switch is a UI component that can be in two states: "On" (when value is true) and "Off" (when value is false).

View Demo

The following code adds the Switch to your page.

index.js
  • $(function() {
  • $("#switchContainer").dxSwitch({
  • value: true
  • });
  • });
See Also