Skip to content

Instantly share code, notes, and snippets.

@robbitt07
Created May 18, 2018 10:23
Show Gist options
  • Select an option

  • Save robbitt07/5b35093a612c0c7d4cb8f0e0e3800145 to your computer and use it in GitHub Desktop.

Select an option

Save robbitt07/5b35093a612c0c7d4cb8f0e0e3800145 to your computer and use it in GitHub Desktop.
fade js
<script type = "text/javascript">
$(document).ready(function(){
$(".<id-click>").click(function(event){
event.preventDefault();
$(this).next(".<id>").fadeToggle();
})
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment