there is such a code
function Ajax_find(name) { if(name.length > 1){ $.post("/search", {'имя': name}, onAjaxSuccess); function onAjaxSuccess(data) { document.getElementById('table').innerHTML = decodeURIComponent(data); } } } In chrome, everything works fine, Firefox does not send requests to the server, and IE8 sends requests but does not receive an answer, just by the will of fate you have to make a frontend, and in it I am not at all strong, the server is self-written on Node
HTML part such
<form> <input type="text" name="name" size="30" onkeyup="Ajax_find(this.value)" autocomplete="off" autofocus> <div id="search"></div> <p><b>Поиск по</b></p> <input type="radio" name="browser" checked="checked"> Фамилии <input type="radio" name="browser" > Имени <input type="radio" name="browser" > Отчеству </form>