Jump to content

Clearning textarea after enter


offy

Recommended Posts

I have some code so when I press enter, it submits the data in textarea. But when I clear text area with

document.getElementById('forminput').value = "";

The cursor stats on the second line. I think this is because of this.

 

switch(validkey) {
	case 13:
		document.getElementById('forminput').value = "";
	break; 
}

Link to comment
https://forums.phpfreaks.com/topic/219010-clearning-textarea-after-enter/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.