Advertisement
webpagefxjared

Untitled

Jun 27th, 2011
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. jQuery('#pricing-chart a.whats-this').click( function(){
  2. var visible = jQuery('#pricing-chart div.pop-up:visible');
  3. var next = jQuery(this).next('div.pop-up');
  4.  
  5. visible.slideUp('slow');
  6. if (!(visible.get(0) === next.get(0))){
  7. next.fadeToggle('slow');
  8. }
  9.  
  10. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement