Guest User

Untitled

a guest
Oct 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).on('click','body', function(e){
  2. if(e.target !== $('.moreOptionsMenu') && e.target !== $('.fa.fa-bars.moreOptions')){
  3. $('.moreOptionsMenu').remove();
  4. }
  5. });
  6.  
  7. $(document).on('click','.fa.fa-bars.moreOptions', function(e){
  8. $('body').append('<div class="moreOptionsMenu">something</div>');
  9. });
Add Comment
Please, Sign In to add comment