Created
August 15, 2017 06:30
-
-
Save fluxsaas/d9ea3a96e60cbcae72d34752f28273c2 to your computer and use it in GitHub Desktop.
index-01-plugins.html
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>PLUGINS</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<h1 id="hello-world">HELLO WORLD!</h1> | |
<button id="change-it">greet</button> | |
<script type="text/javascript"> | |
$("#change-it").on('click', function(){ | |
$("#hello-world").text("HELLO JQUERY!") | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment