Guest User

Untitled

a guest
Feb 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('.b-select-box img').each(function(){
  2.                 $(this).css(this.height < this.width ? 'height' : 'width', selectBoxSize + 'px');
  3.                 $(this).css({position: 'relative', top: ($(this).height() - selectBoxSize) / -2 + 'px', left: ($(this).width() - selectBoxSize) / -2 + 'px'});
  4.  
  5.                 alert('height: ' + $(this).height + 'px\nwidth: ' + $(this).width() + 'px');
  6.             });
Add Comment
Please, Sign In to add comment