enabled

Specifies whether opening and closing of the suggestion list should be animated. Defaults to true.


<input id="autocomplete"></input>

<script type="text/javascript">

     $(function () {
       $("#autocomplete").shieldAutoComplete({
            dataSource: {
                data: myData
            },
            animation: {
                enabled: true
            }
        });
    });

</script>