--- layout: default ---

Show/hide with Animation

Using animations with the openEffect and closeEffect parameters. Either pass an array with the effect name and the speed, an object of animation parameters, or just specify the name of an effect. If you don't specify a speed, the default of 400ms will be used.

Specifying different show and hide speeds

$("#test-1").multiselect({
   openEffect: ["bounce", 200],
   closeEffect: ["explode", 1000]
});

Only passing the name of an effect

$("#test-2").multiselect({
   openEffect: "bounce",
   closeEffect: "explode"
});