Skip to content

Instantly share code, notes, and snippets.

@andrewjkerr
Last active January 1, 2016 02:19
Show Gist options
  • Save andrewjkerr/8078877 to your computer and use it in GitHub Desktop.
Save andrewjkerr/8078877 to your computer and use it in GitHub Desktop.
Click on div title and shows element right after title.
$(document).ready(function() {
$(".calc").hide();
//toggle the component with class msg_body
$(".className").click(function()
{
$(this).nextAll(".calc:first").slideToggle(500);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment