I want to rewrite this line without using jQuery so it can be applied quicker (and before the downloading of the jQuery library). The line is...
$(document).ready(function() { $('body').addClass('javascript'); });
If I added it to the html
element instead, would I be able to leave off the DOM ready part? One problem with this though is the validator doesn't like the class attribute on the html
element, even if it is inserted with JS.
So, how would I rewrite that without jQuery?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…