На всех страницах шопа, ошибка джавы.
Подробнее:
Вот сам скрипт:
Код:
<!-- /Block permanent links module HEADER --><!-- Block search module TOP -->
<div id="search_block_top">
<form method="get" action="/poisk.html" id="searchbox">
<p>
<label for="search_query"><!-- image on background --></label>
<input type="hidden" name="orderby" value="position" />
<input type="hidden" name="orderway" value="desc" />
<input type="text" id="search_query" name="search_query" value="" />
<input type="submit" name="submit_search" value="Найти" class="button" />
</p>
</form>
</div>
<script type="text/javascript">
function formatSearch(row) {
return row[2] + ' > ' + row[1];
}
function redirectSearch(event, data, formatted) {
$('#search_query').val(data[1]);
document.location.href = data[3];
}
$('document').ready( function() {
$("#search_query").autocomplete(
'/poisk.html', {
minChars: 3,
max:10,
width:500,
scroll: false,
formatItem:formatSearch,
extraParams:{ajaxSearch:1,id_lang:}
}).result(redirectSearch)
});
</script>
<!-- /Block search module TOP --><!-- Block user information module HEADER -->
Получается что ошибка в строке
Код:
extraParams:{ajaxSearch:1,id_lang:}
Как бороться?