Hi,
Would it be possible to submit the form i.e <form name="theForm" action="target.asp" method="post" ID="Form1"> when the user hits enter key
I have written a js function already
function checkEnter(event)
{
var code = 0;
if (NS4)
code = event.which;
else
code = event.keyCode;
if (code==13){
event = null;
document.form.submit();
}
}
My only problem and worry is, where would be a suitable place to call this function. I was hoping to use the onkeypress(). Does the CuteSoft textarea support this call?? Any suggestions would be great. An example of what i'm trying to achieve is the similar to your asp.net chat . i.e the messages get posted/submitted when the enter key is struck.
Regards Newboy