Mobile Menu - Click outside menu to close menu

后端 未结 2 1738
無奈伤痛
無奈伤痛 2021-01-23 09:24

\"enter

I have that button in my mobile website; the problem is, that I need to add a meth

2条回答
  •  悲哀的现实
    2021-01-23 09:58

    You can do something like below to hide/close the menu

    $(document).click(function(){
     $(your class/id).hide('slow'); 
    });
    

    Here is Fiddle

    Instead of menu i have just shown a simple example for click

提交回复
热议问题