Skip to content

Instantly share code, notes, and snippets.

@gari8641
Created July 23, 2020 06:47
<div class="hoge">click me !</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$(".hoge").click(function(){
$(this).toggleClass("hoge");
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment