$('#search_text').keyup(function() {
var search_text = document.getElementById('search_text').value;
$.ajax({
url:"jx_displayautocompletelist.php",
data: 'text='+search_text,
success:function(result){
$("#autocompleteresult").html(result);
}
});
});
what i want to print text which written in "search_text" in ajax file its working with english but doesn't work with arabic
for example :
english : football
arabic: كرة
its working fine with firefox but doesn't work with arabic with IE
Sory if this sounds stupid but have you changed your charset to accept arabic, if not try folowing code in head of HTML: