Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $(document).on('click',function() {
  2. if(!(this).hasClass("help-icons") && !(this).hasClass("help") && (this).hasClass("close")){
  3. $(".help-icons").hide();
  4. }else if((this).hasClass("help")){
  5. $(".help-icons").show();
  6. }else{
  7. $(".help-icons").hide();
  8. }
  9. });
  10.  
  11. $(document).on('click', function() {
  12. if(!$(this).hasClass("help-icons") && !$(this).hasClass("help") && $(this).hasClass("close")) {
  13. $(".help-icons").hide();
  14. } else if ( $(this).hasClass("help")) {
  15. $(".help-icons").show();
  16. } else {
  17. $(".help-icons").hide();
  18. }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement