Created
June 11, 2020 03:10
-
-
Save djD-REK/888c5dedf1e5f939e7ed9f7b0506b6e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// <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