Advertisement
skalibran

Untitled

Oct 10th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $('.content_side_wrapper *').each(function() {
  2. let defaultFontSize = parseInt($(this).css('font-size'));
  3. let newFontSize = defaultFontSize*1.5;
  4. if (defaultFontSize) {
  5. $(this).css('font-size', newFontSize+'px');
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement