Skip to content

Instantly share code, notes, and snippets.

@vquaiato
Created March 27, 2012 03:42
Show Gist options
  • Save vquaiato/2212309 to your computer and use it in GitHub Desktop.
Save vquaiato/2212309 to your computer and use it in GitHub Desktop.
ctrl + enter in textarea PARA NOOOOOSA ALEGRIA
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$('#foo-area').keypress(function (e) {
if (e.ctrlKey && e.keyCode == 13) {
alert("PARA NOOOOOSA ALEGRIA!");
}
});
});
</script>
</head>
<body>
<textarea id="foo-area">
</textarea>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment