Advertisement
Guest User

Untitled

a guest
Dec 15th, 2015
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. var jq_ready = function () {
  3.  
  4. add_script('http://pvaske.playground.legitdesigns.com/wp/wp-content/plugins/Aidee-Bidder/assets/js/form.js', null);
  5.  
  6. };
  7.  
  8. function add_script(src, callback) {
  9.  
  10. var script = document.createElement('script');
  11.  
  12. script.src = src;
  13.  
  14. script.onload = callback;
  15.  
  16. var head = document.getElementsByTagName('head')[0];
  17.  
  18. script.type = 'text/javascript';
  19.  
  20. head.appendChild(script);
  21.  
  22. }
  23.  
  24. function loadJquery() {
  25.  
  26. if (typeof jQuery=='undefined') {
  27.  
  28. add_script('https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js', loadJqueryUi);
  29.  
  30. } else {
  31.  
  32. loadJqueryUi();
  33.  
  34. }
  35.  
  36. }
  37.  
  38. function loadJqueryUi (callback) {
  39.  
  40. if (typeof jQuery.ui == 'undefined') {
  41.  
  42. add_script('https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js', jq_ready);
  43.  
  44. } else {
  45.  
  46. jq_ready();
  47.  
  48. }
  49.  
  50. }
  51.  
  52. loadJquery();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement