diff options
Diffstat (limited to 'js/nice-bar.js')
-rwxr-xr-x | js/nice-bar.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/nice-bar.js b/js/nice-bar.js new file mode 100755 index 0000000..b27ba2b --- /dev/null +++ b/js/nice-bar.js @@ -0,0 +1,6 @@ +$(document).ready(function() { + $(".nice-bar").slideDown(); + $(".nice-close").click(function() { + $(".nice-bar").slideUp(); + }); +}); |