Facebook
From czet(...).setSelectionRange isxc, 3 Years ago, written in JavaScript.
This paste is a reply to Untitled from Sexy Dormouse - view diff
Embed
Download Paste or View Raw
Hits: 169
  1. $("#emojis span").on("click", function () {
  2.   var caretPos = $("#input")[0].selectionStart;
  3.   var textAreaTxt = $("#input").val();
  4.   var txtToAdd = $(this).text();
  5.   $("#input").val(
  6.     textAreaTxt.substring(0, caretPos) +
  7.       txtToAdd +
  8.       textAreaTxt.substring(caretPos)
  9.   );
  10.   $("#input").get(0).setSelectionRange(caretPos, caretPos);
  11. });
  12.