راکت
1masoud
1masoud
توسط 1masoud مطرح شد
1 پاسخ

نوشتن جستجو autocomplate

@ali.bayat @Alimotreb
من این جستجو رو نوشتم اما یک مشکلی داره فقط حرف اول رو میزنم سرچ میکنه حرف دوم و سوم بی تاثیر هست

 <input class="header-search-container-input hashtag" type="text"
 placeholder="جستجو ..." name="q">

اینم کد jquery

var $input = $('.header-search-container-result');
        $(document).on('keyup keypress change oninput', '.header-search-container-input', function () {
            $input.removeClass('show-result');
            if ($(this).val() !== "") {
                $input.addClass('show-result');
            }
        });