Нет описания

jquery.insert-at-caret.min.js 926B

12345678910111213
  1. /*!
  2. * jQuery insertAtCaret 1.1.4
  3. * http://www.karalamalar.net/
  4. *
  5. * Copyright (c) 2013 İzzet Emre Erkan
  6. * Licensed under GPLv2 or later.
  7. * http://www.gnu.org/licenses/gpl-2.0.txt
  8. *
  9. * Contributors:
  10. * [@kittsville](https://github.com/kittsville)
  11. *
  12. */
  13. !function(e,t){e.fn.insertAtCaret=function(e){return this.each(function(){var a,n,r,o,c=this,l=0,s="selectionStart"in c&&"selectionEnd"in c;(c.tagName&&"textarea"===c.tagName.toLowerCase()||c.tagName&&"input"===c.tagName.toLowerCase()&&"text"===c.type.toLowerCase())&&(a=c.scrollTop,s?l=c.selectionStart:(c.focus(),o=t.selection.createRange(),o.moveStart("character",-c.value.length),l=o.text.length),n=c.value.substring(0,l),r=c.value.substring(l,c.value.length),c.value=n+e+r,l+=e.length,s?(c.selectionStart=l,c.selectionEnd=l):(o=t.selection.createRange(),o.moveStart("character",l),o.moveEnd("character",0),o.select()),c.scrollTop=a)})}}(jQuery,document,window);