Skip to content

Instantly share code, notes, and snippets.

@IDIDIR
Last active October 30, 2018 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IDIDIR/bc5f8681ef171eeadd63b07455bead83 to your computer and use it in GitHub Desktop.
Save IDIDIR/bc5f8681ef171eeadd63b07455bead83 to your computer and use it in GitHub Desktop.
// kostyl for the new line in textarea
$('textarea').keyup(function (event) {
if (event.keyCode == 13) {
var content = this.value;
this.value = content + "\n";
event.stopPropagation();
}
});
@nanoqsh
Copy link

nanoqsh commented Oct 30, 2018

Cool kostyle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment