Yeah, Twey doesn't do Windows so, he is out in left field on this one. Try this script in the head:
Code:
<script type="text/javascript">
function ieSubmit(e, el){
if (document.documentElement.filters){
if (e.keyCode=='13'){
el.submit()
return false;
}
}
}
</script>
and this code for your form:
Code:
<div id="sc1" class="switchcontent">
<b>find telephone number:</b>
<form onkeydown="return ieSubmit(event, this);" name="tel" target="_blank" method="get" action="http://www.nationaletelefoongids.nl/ntlist.asp">
looking for <input type="text" accesskey="t" name="bname" class="zoekendubbelvoorbeeld" value=" Jansen">
in <input type="text" name="city" class="zoekendubbelvoorbeeld" value=" Leiden">
<input type="image" src="knoppen/zoeken.gif" width="8" height="9" border="0">
</form>
</div>
Bookmarks