DEV Community

Discussion on: Using media queries with JavaScript

Collapse
 
elusive241 profile image
elusive24 • Edited

Thanks for the solution, but its probably very inefficient because of multiple 'getComputedStyle' calls.

Collapse
 
wparad profile image
Warren Parad

It's actually very effective without a problem.

Thread Thread
 
elusive241 profile image
elusive24 • Edited

getComputedStyle() forces layout recalculation. While its ok for simple cases, in general, its a perfomance bottleneck.

Might be useful (what forces layout reflow):
gist.github.com/paulirish/5d52fb08...