- Katılım
- 13 Ağu 2009
- Mesajlar
- 3,200
- Tepkime puanı
- 1
- Puanları
- 38
- Yaş
- 39
- Konum
- Bursa
- Web sitesi
- www.opencart-tr.com
halit' Alıntı:www.bitiklakapinda.com bu sitede js hatası veriyor acaba sorun nerden kaynaklanıyordur ?
Web sayfası hata ayrıntıları
Kullanıcı Aracısı: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET4.0C; .NET4.0E)
Tarih damgası: Tue, 26 Apr 2011 13:13:23 UTC
İleti: Nesne bekleniyor
Satır: 81
Karakter: 1
Kod: 0
URI: http://www.bitiklakapinda.com/catalog/view/javascript/livesearch.js
JS dosyasının içeriğini bununla değiştirip denermisin
Kod:
//<![CDATA[
function doLiveSearch( keywords ) {
$('#search_results').remove();
if( keywords == '' || keywords.length < 3 ) {
return false;
}
$.ajax({url: 'index.php?route=product/search/ajax&keyword=' + keywords, dataType: 'json', success: function(result) {
if( result.length > 0 ) {
var eList = document.createElement('ul');
eList.id = 'search_results';
var eListElem;
var eLink;
for( var i in result ) {
eListElem = document.createElement('li');
eLink = document.createElement('a');
eLink.appendChild(document.createTextNode(result[i].name));
eLink.href = result[i].href; //'index.php?route=product/product&product_id=' + result[i].product_id;
eListElem.appendChild(eLink);
eList.appendChild(eListElem);
}
$('#search').append(eList);
}
}});
return true;
}
$(document).ready(function(){
$('#filter_keyword').keyup(function(){
doLiveSearch(this.value);
}).focus(function(){
doLiveSearch(this.value);
}).blur(function(){
window.setTimeout("$('#search_results').remove()", 1500);
});
});
//]]>