Advertisement
dragonfree97

Untitled

Oct 11th, 2015
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $('[name="message"]').keypress(function(e) {
  2. if (e.which == 0 || e.which == 13) {
  3. this.value = this.value.slice(0,1).toUpperCase() + this.value.slice(1);
  4. this.value = this.value.replace(/^(.*?)$/gi, '$1 desu.');
  5. }
  6. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement