Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save djD-REK/888c5dedf1e5f939e7ed9f7b0506b6e7 to your computer and use it in GitHub Desktop.
Save djD-REK/888c5dedf1e5f939e7ed9f7b0506b6e7 to your computer and use it in GitHub Desktop.
// <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
fetch("https://code.jquery.com/jquery-3.5.0.js")
.then((response) => response.text())
.then((text) => eval(text))
.then(() => {
/* Use jQuery */ $("div").css("border", "3px dotted orange")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment