1 2 3 4 5 6 7 8 9
| if (typeof $.fn != 'undefined' && typeof $.fn.jquery != 'undefined') { console.log("jquery " + $.fn.jquery + " already exist"); } else { var script = document.createElement('script'); script.setAttribute('type', 'text/javascript'); script.setAttribute('src', 'https://code.jquery.com/jquery-3.3.1.min.js'); document.body.appendChild(script); console.log("jquerfied"); }
|