diff options
Diffstat (limited to '')
-rw-r--r-- | static/js/show.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/static/js/show.js b/static/js/show.js new file mode 100644 index 0000000..c0b6d12 --- /dev/null +++ b/static/js/show.js @@ -0,0 +1,7 @@ +$(document).ready(function(){ + $(".details_heading").click(function() { + $(this).next().toggle() + }) + + $(".details").hide() +}) |