Søgning på enter
HejEr det muligt at ændre nendeforstående søgebox, dvs. at fjerne søg knappen og istedet at aktivere søgnig via enter knappen?
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<title>Sökruta på webbsida</title>
<script language="JavaScript">
function search()
{
window.open ('http://secure04.elibdrift.dk/F/-?func=find-c&ccl_term='+document.sok.sokord.value+'&local_base=ffflb&con_lng=far&format=000&charconv=default');
}
</script>
</head>
<body onload="window.focus()">
<form name="sok">
<table border="0" cellpadding="3" width="90%">
<tr>
<td>
<input type="text" size="16" name="sokord">
<input type="button" value="Sök" onclick="search()">
</td>
</tr>
</table>
</form>
</body>
</html>