Advertisement
Guest User

Untitled

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