Здравствуйте заменил для поиска у меня модуль постоянно перезагружает страницу,в чем может быть проблема?
/* Search */
$('.button-search').bind('click', function() {
url = $('base').attr('href') + 'index.php?route=product/search';
var search = $('input[name=\'search\']').attr('value');
if (search) {
url += '&search=' + encodeURIComponent(search);
}
location = url;
var str='';
str = $('input[name=\'search\']').val();
str = str.replace(/[^a-zA-Z0-9.-]+/g, '');
url = '/parts/search/'+str+'/';
location = url;
});
$('#header input[name=\'search\']').bind('keydown', function(e) {
if (e.keyCode == 13) {
url = $('base').attr('href') + 'index.php?route=product/search';
var search = $('input[name=\'search\']').attr('value');
if (search) {
url += '&search=' + encodeURIComponent(search);
}
location = url;
var str='';
str = $('input[name=\'search\']').val();
str = str.replace(/[^a-zA-Z0-9.-]+/g, '');
url = '/parts/search/'+str+'/';
location = url;
}
});
в common.js