dehqan

Untitled

Sep 5th, 2011
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function emoticon(smiley) {
  2.  
  3. var txtarea = document.myForm.text;
  4.  
  5. smiley = ' ' + smiley + ' ';
  6.  
  7. if (txtarea.createTextRange && txtarea.caretPos) {
  8.  
  9. var caretPos = txtarea.caretPos;
  10.  
  11. caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? smiley + ' ' : smiley;
  12.  
  13. txtarea.focus();
  14.  
  15. } else {
  16.  
  17. txtarea.value += smiley;
  18.  
  19. txtarea.focus();
  20.  
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment