Advertisement
Guest User

Untitled

a guest
Jun 7th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(document).ready(function(){
  2. $('#textarea').keypress(function(e){
  3. if(e.shiftKey === true){
  4. if(e.which == 13){
  5. $('#textarea').append("\n");
  6. }
  7.  
  8. }else if(e.shiftKey === false){
  9. if(e.which == 13){
  10. // submit to form using submit()
  11. $('span#display').text($('#textarea').val());
  12. }
  13. }
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement