13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
|
|
function index_form_enter(event) {
|
|
if (event.which || event.keyCode) {
|
|
if ((event.which == 13) || (event.keyCode == 13)) {
|
|
index_form_submit();
|
|
}
|
|
};
|
|
}
|
|
|
|
function index_form_submit() {
|
|
window.location = window.location + "/list/" + document.getElementById("index_form_name").value;
|
|
}
|