Guest User

Untitled

a guest
Jun 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //bind select
  2. $(<select_jQuery_selector>).select_puncher({
  3. p_vertical: 'bottom',
  4. p_horizontal: 'right',
  5. animation: 'fade',
  6. animation_speed: 500
  7. });
  8.  
  9. //global close
  10. $('body').bind('click',function(){
  11. $(<select_jQuery_selector>).each(function(){
  12. if($(this).hasClass('down')) $(this).removeClass('down').trigger('click');
  13. });
  14. });
Add Comment
Please, Sign In to add comment