So i am running media queries and this code:
//Check different widths as different browsers report it differently
if ($(window).width()!==0) {
width = $(window).width();
}
else if (window.innerWidth!==0) {
width = window.innerWidth;
}
But it now appears that these are not matching up with my media queries. That combined with certain mobile aren't liking these widths means that my styles don't always match my JS added styles.
Does anybody have a complete way to detect browser width with JavaScript or jQuery?