Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /*position horizontal scroll bar at center of DIV*/
  2.  
  3. function centerHScrollBar(){
  4. var outerContent = $('.product-view');
  5. var innerContent = $('.pillow-contain-show');
  6.  
  7. outerContent.scrollLeft( (innerContent.width() - outerContent.width()) / 2);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement