jquery autocomplete IE 9 not working
Posted
by
Al3mor
on Stack Overflow
See other posts from Stack Overflow
or by Al3mor
Published on 2014-05-31T15:23:09Z
Indexed on
2014/05/31
15:24 UTC
Read the original article
Hit count: 263
I am trying to autocomplete in a input, It is working fine in Chrome,Safari&Firefox . It is not working on IE 9 alone. Please help.
$("#name").autocomplete({
select: function(event, iu) {
id = event.toElement.innerText.split('-')
$("#id_estudiante").val(id[1]);
$("#FinancieroGrid").load('php/Financiero/librerias/FindStudent.php?action='+id[1].replace(' ',''));
},
source:'php/Financiero/function/getstuden.php',
minLength:1
});
© Stack Overflow or respective owner