click_dropdown.js 430 B

123456789101112131415
  1. var currDropdownMenu;
  2. function click_dropdown_init() {
  3. $(".click_dropdown_button").click(function () {
  4. currDropdownMenu = this;
  5. $(this).siblings(".click_dropdown_content").first().show();
  6. $(document).one("click", function () {
  7. $(currDropdownMenu).parent().children(".click_dropdown_content").hide();
  8. });
  9. event.stopPropagation();
  10. });
  11. $(".click_dropdown_content_inner").click(function () {
  12. $(this).hide();
  13. });
  14. }