openDelay

The time in milliseconds indicating how long the suggestion list opening animation should take. Defaults to 200.


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

<script type="text/javascript">

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

</script>