Hello,
I am using the following CSS Media Queries:
- @media screen {width: 1198px;}
- @media screen and (max-width: 1024px) {width: 940px;}
So, when the screen width goes under 1024px the width of the site becomes 940px instead of 1198px.
When this happens I need to refresh some images, containing charts.
How can I do this detection in JQuery?
Is there a way to translate CSS Media Queries to JQuery? Some plugin?
Thank You,
Miguel