Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $("#e").click(function (e) {
  2.  
  3. $("#s").show(200);
  4. e.stopPropagation();
  5.  
  6.  
  7. $("body").click(function (e) {
  8. if (!$(e.target).hasClass('popu')) {
  9.  
  10.  
  11. $("#s").hide(200);
  12.  
  13. }
  14. });
  15. });
  16.  
  17. $("#er").click(function (er) {
  18.  
  19. $("#u").show(200);
  20. er.stopPropagation();
  21.  
  22.  
  23. $("body").click(function (er) {
  24. if (!$(er.target).hasClass('popu')) {
  25.  
  26.  
  27. $("#u").hide(200);
  28.  
  29. }
  30. });
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement