Created
March 27, 2012 03:42
-
-
Save vquaiato/2212309 to your computer and use it in GitHub Desktop.
ctrl + enter in textarea PARA NOOOOOSA ALEGRIA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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