Guest User

Untitled

a guest
Jul 16th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. $.ajax({
  2.  
  3. if (document.getElementById("facebook-jssdk")) { //if set, reset
  4. //removes the <script>
  5.  
  6. document.head.removeChild(document.getElementById("facebook-jssdk"));
  7.  
  8. delete window.FB; //unloads the APIs
  9. delete window.fbAsyncInit;
  10. delete window.fbq;
  11. delete window._fbq
  12. delete window.loaded;
  13.  
  14.  
  15.  
  16. setTimeout(function() {
  17.  
  18. $.getScript("https://intentwarenow.com/fb_messenger.js", function() {
  19.  
  20. //adding html here
  21.  
  22. });
  23. }, 3000);
  24.  
  25.  
  26.  
  27.  
  28. } else {
  29. $.getScript("https://intentwarenow.com/fb_messenger.js", function() {
  30. //adding html here
  31. });
  32. }
  33.  
  34. }
  35. });
Add Comment
Please, Sign In to add comment