Guest User

Untitled

a guest
Jan 17th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <script type="text/javascript" src="https://platform.linkedin.com/xdoor/scripts/in.js">
  2. api_key: {our API key}
  3. extensions: ATSIntegrationWidget@http://www.linkedin.com/recruiter/widget/ATSIntegration
  4. </script>
  5.  
  6. <script type="IN/ATSIntegrationWidget"
  7. data-supported-bundled-integration-types="RECRUITER_SYSTEM_CONNECT_COMPANY,RECRUITER_SYSTEM_CONNECT_CONTRACT,APPLY_WITH_LINKEDIN,APPLY_STARTERS_EXP"
  8. data-onintegrate="handleIntegrations"
  9. data-width="500px">
  10. </script>
  11.  
  12. <script>
  13. function handleIntegrations(integrations) {
  14. //Your code here
  15. }
  16. </script>
  17.  
  18. var target = document.getElementById("integration");
  19.  
  20. var newScript = document.createElement("script");
  21. var inlineScript = document.createTextNode("function handleIntegrations(integrations) { }");
  22. newScript.appendChild(inlineScript);
  23. target.appendChild(newScript);
Add Comment
Please, Sign In to add comment