Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <div class="wysiwyg-editor" id="editor1"></div>
  2.  
  3. <input type="hidden" name="texto" />
  4.  
  5. <small><strong>ESCOLA...:</strong>
  6. <a href="#" title="CNPJ" class="button">$eCNPJ</a>
  7. - <a href="#" title="Rasão Social" class="button">$eRSocial</a>
  8. - <a href="#" title="Nome Fantasia" class="button"> $eNFantasia</a>
  9. </small>
  10.  
  11. $(document).ready(function() {
  12. $('.button').click(function(event) {
  13. event.preventDefault();
  14. const editor = document.getElementById('editor1');
  15. const posicaoFinal = editor.selectionStart + this.innerText.length;
  16.  
  17. editor.value =
  18. editor.value.slice(0, editor.selectionStart) +
  19. this.innerText +
  20. editor.value.slice(editor.selectionEnd);
  21.  
  22. editor.setSelectionRange(posicaoFinal, posicaoFinal);
  23. editor.focus();
  24. });
  25. });
  26.  
  27. editor.value =
  28. editor.value.slice(0, editor.selectionStart) +
  29. this.innerText +
  30. editor.value.slice(editor.selectionEnd);
  31.  
  32. editor.innerHTML =
  33. editor.innerHTML.slice(0, editor.selectionStart) +
  34. this.innerText +
  35. editor.innerHTML.slice(editor.selectionEnd);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement