AutoComplete JS2

//Load the search auto complete
$('.searchinput').on("change keyup paste", function() {
    var value = $(this).val();
    $('.search-field').val(value);
    if(value.length > 2) {
        autoComplete($(this).val());
    } else {
        $('#search-section .ac-search-results').html('');
    }
});

$('.searchinput').on( "focusin", function() {
    setTimeout( function() {
        $('#search-section .ac-search-results').fadeIn();
    }, 500);
});

$('.searchinput').on( "focusout", function() {
    setTimeout( function() {
        $('#search-section .ac-search-results').fadeOut();
    }, 500);
});