Guest User

Untitled

a guest
Jun 24th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(this).click(function(){
  2. $(this).next('div.info').toggle();
  3. });
  4.  
  5. var visible = $(this).next('div.info').toggle().is(":visible");
  6. if(visible){
  7. alert("Hey! I've just showed up here!");
  8. }
  9.  
  10. if ($(selector).is(':visible')) {
  11. // do something
  12. }
Add Comment
Please, Sign In to add comment