Skip to content

Instantly share code, notes, and snippets.

@redtopia
Last active December 20, 2019 19:24
Show Gist options
  • Save redtopia/712a9bb7c0fb4c1e1adb8cc5ac0fcacc to your computer and use it in GitHub Desktop.
Save redtopia/712a9bb7c0fb4c1e1adb8cc5ac0fcacc to your computer and use it in GitHub Desktop.
Test Playground
#mydiv h1 {
color:blue;
}
<div id="mydiv">
<h1>Hello World!</h1>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
$(document).ready(function () {
$('#mydiv').on('click', function (e) {
alert('hey that tickles!');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment