Skip to content

Instantly share code, notes, and snippets.

@bangiqi
Created May 15, 2015 15:58
Show Gist options
  • Save bangiqi/dc53424900f0be43a763 to your computer and use it in GitHub Desktop.
Save bangiqi/dc53424900f0be43a763 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function(){
// checkbox_check with getElementsByClassName()
if ($('input.checkbox_check').is(':checked')) {
$("#show").click(function(){
$("p").show();
});
}else{
$("#hide").click(function(){
$("p").hide();
});
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment