const script = document.createElement('script'); script.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"; document.head.appendChild(script); script.onload = function() { let svg = document.querySelector(TARGET_SELECTOR); let textElement = document.createElementNS('http://www.w3.org/2000/svg', 'text'); textElement.setAttribute('x', '10'); textElement.setAttribute('y', '20'); textElement.textContent = 'jQuery loaded'; svg.appendChild(textElement); };