Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <div class="parent_block">
  2. <div class="button"></div>
  3. <div class="toggled_block"></div>
  4. </div>
  5.  
  6. $(function(){
  7. $(".pageMenu li.active").click(function() {
  8. $('.select-city').toggle();
  9. });
  10. $(document).on('click', function(e) {
  11. if (!$(e.target).closest(".pageMenu").length) {
  12. $('.select-city').hide();
  13. }
  14. e.stopPropagation();
  15. });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement