Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for chovy
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #284747 |
Post edited: |
— | about 3 years ago |
Edit | Post #284747 | Initial revision | — | about 3 years ago |
Answer | — |
A: How to run a remote JavaScript file from GitHub? ``` const script = document.createElement('script'); script.src = `your.script.url/?bustcache=${Date.now()}`; script.async = true; script.onload = doSomething; document.head.appendChild(script); async function doSomething() { ... (more) |
— | about 3 years ago |