I have 2 Divs that I would like to insert a class into ONLY if Javascript is not supported.
So consider this.. one Div has this class="no-js-left" and the other has this class="no-js-right"
What is the most simple way of detecting this and either removing these is JS is support something without using Modernizr?
Also I am using jQuery if that means anything
Without JavaScript, your markup will remain static. For this to work, you’ll have to add the classes to your HTML first, and then remove those classes using JavaScript.
Since you’re using jQuery, you can easily take them out with
.removeClass():