Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. width of parent is:
  2. width:calc(100% - 330px);
  3.  
  4. width of div where plugin is:
  5. width:100%;
  6.  
  7. -330px = panel on the right side
  8.  
  9. @media only screen and (max-width: XXXpx){
  10. }
  11.  
  12. $( window ).resize(function() {
  13. your function
  14. });
  15.  
  16. $( window ).resize(function() {
  17.  
  18. });
  19.  
  20. $('#yourDivID').width(100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement