5 lines
164 B
JavaScript
5 lines
164 B
JavaScript
function doSearch(e) {
|
|
if (e.keyCode == 13) {
|
|
document.location.href = '../search/search.html?query=' + document.getElementById('search').value;
|
|
}
|
|
} |