Guest User

Untitled

a guest
Nov 19th, 2017
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function onSubmit() {
  2. var instanceName = "something";
  3. var incidentURL = 'https://' + instanceName + '.service-now.com/incident.do?sys_id=' + g_form.getUniqueValue();
  4. copyToClipboardCustom(incidentURL);
  5. }
  6.  
  7. function copyToClipboardCustom(text) {
  8. var input = document.createElement('input');
  9. input.style.position = 'fixed';
  10. input.style.opacity = 0;
  11. input.value = text;
  12. document.body.appendChild(input);
  13. input.select();
  14. document.execCommand('Copy');
  15. document.body.removeChild(input);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment