var script = document.createElement('script'); script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js'; document.head.appendChild(script);
script.onload = function() { jQuery(".user-info .user-name").each(function(index, item) { console.log(index); }); };
|