Here's a less involved trick to deal with media queries. Cross browser support is a bit limiting as it doesn't support mobile IE.
if (window.matchMedia('(max-width: 694px)').matches)
{
//do desired changes
}
See Mozilla documentation for more details.