jquery autosuggest を使用して、テキスト ボックスにデータを入力しています。ie8 でその機能を動作させようとすると、エラーが発生します: コンソールが定義されていません
エラーが表示されているjqueryコードは次のとおりです。
function lookup(inputString) {
if(inputString.length == 0) {
// Hide the suggestion box.
$('#suggestions').hide();
} else {
// post data to our php processing page and if there is a return greater than zero
// show the suggestions box
$.post("string_search.php", {mysearchString: ""+inputString+""}, function(data){
**console.log(data.length)**
if(data.length >0) {
$('#suggestions').show();
$('#autoSuggestionsList').html(data);
}else{
$('#suggestions').hide();
}
});
}
} //end
エラーを解決するのを手伝ってください