Is there a way I can do away with the "submit" button and have the input
text accepted with the "Carriage Return" key?
I can see all sorts of events to do with mouse over, click, dbl clk etc but
nothing that looks like on_enter.
There is an "on_key" event, so do I use that and parse for the enter key?
sub checkEnter
With document.parentWindow.event
if .keycode = 13 then
callWhatYourSubmitDoesHere
Else
.cancelbubble = false
.returnvalue = true
End if
End With
End sub
with an input box like this ...
<input type=text onkeydown=checkEnter size=60 id=Cmd>
I'd leave the 'Submit' button for those who can't live without clicking
the mouse.
Tom Lavedas
=============