$(document).on('input', '#search', function (e) {
isSearchInput = true
if ((!e.target.isNeedPrevent)) reload()
}).on('compositionstart', '#search', function (e) {
e.target.isNeedPrevent = true
}).on('compositionend', '#search', function (e) {
e.target.isNeedPrevent = false
reload()
}).on('click', '#search', function (e) {
isSearchInput = true
}).on('blur', '#search', function (e) { })