Skip to content

Instantly share code, notes, and snippets.

@fluxsaas
Created August 15, 2017 06:30
Show Gist options
  • Save fluxsaas/d9ea3a96e60cbcae72d34752f28273c2 to your computer and use it in GitHub Desktop.
Save fluxsaas/d9ea3a96e60cbcae72d34752f28273c2 to your computer and use it in GitHub Desktop.
index-01-plugins.html
<!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